/* Colour Variable */
:root {
    --black: #000000;
    --black-700: #383838;
    --black-100: #747a7c;
    --blue: #0299d1;
    --blue-100: #04567d;
    --orange: #ff7519;
    --grey: #eeeeee;
    --grey-100: #efefef;
    --grey-200: #c9c9c9;
    --input-bg: #ededed;
    --white: #fff;
}
@font-face {
    font-family: "Futura PT";
    src:
        url("../font/FuturaPT-Bold.woff2") format("woff2"),
        url("../font/FuturaPT-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT Book";
    src:
        url("../font/FuturaPT-Book.woff2") format("woff2"),
        url("../font/FuturaPT-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src:
        url("../font/FuturaPT-Medium.woff2") format("woff2"),
        url("../font/FuturaPT-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src:
        url("../font/FuturaPT-Heavy.woff2") format("woff2"),
        url("../font/FuturaPT-Heavy.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT Demi";
    src:
        url("../font/FuturaPT-Demi.woff2") format("woff2"),
        url("../font/FuturaPT-Demi.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src:
        url("../font/FuturaPT-Light.woff2") format("woff2"),
        url("../font/FuturaPT-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body,
html {
    padding: 0;
    margin: 0;
    width: 100%;
    scroll-behavior: smooth;
}
.hidden-desktop {
    display: none;
}
.hidden-tab,
.hidden-mobile {
    display: block;
}
.container {
    max-width: 1583px;
}
p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin: 20px 0;
    color: var(--black);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin: 20px 0;
    line-height: 1;
}
h1 {
    font-size: 60px;
    font-weight: 800;
}
h2 {
    font-size: 36px;
    font-weight: 800;
}
h3 {
    font-size: 30px;
    font-weight: 600;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 18px;
    font-weight: 600;
	margin-bottom:7px;
}
h6 {
    font-size: 16px;
}
/* Section */
section.paddingTop {
    padding-top: 64px;
}
section.paddingBottom {
    padding-bottom: 96px;
}
section.noPaddingTop {
    padding-top: 0;
}
section.noPaddingBottom {
    padding-bottom: 0;
}
img {
    max-width: 100%;
    height: auto;
}

.pt-30 {
    padding-top: 30px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pr-0 {
    padding-right: 0;
}
.pl-0 {
    padding-left: 0;
}
.p-100 {
    padding: 100px;
}
.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.bg-grey {
    background-color: var(--grey);
}
header {
    padding: 16px 0 0;
    width: 100%;
}
.navbar-nav {
    display: flex;
    justify-content: center;
    flex: 0.8;
}
.navbar-nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.navbar-nav ul li {
    position: relative;
    padding: 10px 27px;
}

.navbar-nav ul li:last-child {
    padding-right: 0;
}
.navbar-nav ul li a {
    font-size: 14px;
    color: #747a7c;
    text-decoration: none;
    font-weight: 500;
    font-family: "PT Sans Caption", sans-serif;
}
.navbar-nav ul li:hover a {
    color: var(--blue);
}

.submenu {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    min-width: 200px;
    background: var(--blue-100);
    z-index: 1;
}
.submenu::before {
    content: "";
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--blue-100);
    position: absolute;
    top: -12px;
    left: 60px;
    z-index: 1;
}
.navbar-nav ul li:hover .submenu {
    display: block;
}
.navbar-nav ul li .submenu ul {
    display: block;
}
.navbar-nav ul li .submenu ul li {
    padding: 7px 15px;
}
.navbar-nav ul li .submenu ul li > a {
    color: var(--white);
    text-align: center;
    display: block;
}
.navbar-nav ul li .submenu ul > li:hover .submenu-large {
    display: block;
}
.submenu-large {
    display: none;
    position: absolute;
    top: 0px;
    /* left: 100%; */
    width: 100%;
    min-width: 400px;
    background: var(--blue);
    z-index: 1;
}
.submenu-large::before {
    display: none;
}
.submenu-large ul {
    column-count: 2;
    column-gap: 0px;
    column-rule: 1px solid #79c2dd;
}
.submenu-large > ul > li:not(:nth-child(40)) {
    border-bottom: 1px solid #79c2dd;
}
.submenu-large > ul > li:hover {
    background-color: var(--blue-100);
}
.submenu-large > ul > li > a {
    text-align: center !important;
    padding-inline: 5px;
}
header .right-side {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.right-side .link {
    text-decoration: none;
    font-size: 14px;
    color: var(--dark-blue);
    line-height: 1;
    margin-right: 16px;
    font-weight: 500;
}
.button {
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background-color: var(--blue);
    border: none;
    outline: none;
    text-decoration: none;
    color: var(--white);
    line-height: 1;
    padding: 11.5px 13px;
    display: inline-flex;
    align-items: center;
}
.button:hover {
    box-shadow: 0 4px 12px rgba(0 0 0 / 10%);
}
.button.button-black {
    background-color: var(--dark-blue);
}
.button img {
    flex-shrink: 0;
    margin-left: 6px;
}
header .header-inner {
    display: flex;
    flex-wrap: wrap;
}
header .right-header {
    padding-left: 40px;
    flex: 0.9;
}
header .header-top {
    display: flex;
    align-items: center;
    padding-top: 41px;
}
.header-top h2 {
    font-size: 24px;
    color: var(--blue);
    margin: 0;
    text-align: center;
    width: 100%;
    flex: 0.8;
    font-family: "Futura PT Demi";
    font-weight: 500;
    text-transform: uppercase;
}
.header-inner .left-logo {
    flex: 0.1;
    display: flex;
    align-items: center;
}
header .container {
    padding-left: min(10%, 180px);
    padding-right: 3%;
}
.right-search {
    max-width: 161px;
    height: 35px;
    position: relative;
    flex: 0.2;
}
.right-search form {
    display: block;
    height: 100%;
    width: 100%;
}
.right-search input {
    width: 100%;
    border: none;
    outline: none;
    background-color: var(--grey);
    height: 100%;
    padding: 4px 27px;
    color: #747a7c;
    text-transform: uppercase;
    font-size: 18px;
}
.right-search input::placeholder {
    color: #747a7c;
}
.right-search button {
    position: absolute;
    right: 27px;
    top: -1px;
    height: 100%;
    width: 24px;
    border: none;
    background-color: transparent;
    outline: none;
}
header .bottom-header {
    padding-top: 32px;
    display: flex;
    align-items: center;
}
.right-whatsapp {
    flex: 0.2;
    font-size: 13px;
    color: #04567d;
    font-weight: bold;
    font-family: "Futura PT";
    font-weight: 600;
    display: flex;
    align-items: center;
}
.right-whatsapp span {
    padding-left: 9px;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.right-whatsapp a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}
.banner {
    position: relative;
}
.banner .banner-slider {
    width: 100%;
    overflow: hidden;
    height:350px;
}
.banner .container {
    padding-left: 131px;
    padding-right: 131px;
}
.banner .slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.banner .slide .col-md-8 .left-side { position:relative; height:100%; }
.banner .slide .col-md-8 .left-side H1 { display:inline-block; position:absolute; top:50%; transform:translateY(-50%); width:100%; left:0; }
.banner .slide .col-md-4 {
    background-color: rgb(2 153 209 / 50%);
    padding: 97px 42px 0;
}
.banner .slide .right-side p {
    font-size: 24px;
    color: var(--white);
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    margin: 0 0 62px;
}
.banner .slide h1 {
    font-size: 48px;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    max-width: 722px;
    font-family: "Montserrat", sans-serif;
}
.banner .slick-next {
    right: 50px;
}
.banner .slick-next:before,
.banner .slick-prev:before {
    content: "";
    font-size: 0;
}
.banner .slick-next,
.banner .slick-prev {
    width: 41px;
    height: 138px;
    background-image: url(../images/icon7.png);
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}
.banner .slick-prev {
    background-image: url(../images/icon8.png);
}
.banner .slick-prev {
    left: 51px;
}
.product-tab .container,
.our-news > .container,
.map-sec .container:first-child,
.container-medium {
    max-width: 1197px;
}
.product-tab {
    padding: 50px 0;
}
.product-tab-inner .nav-item {
    border: 0.5px solid var(--blue);
}
/* .product-tab-inner .nav-item:not(:last-child) {
    border-right: none;
} */
.product-tab-inner .nav-item button {
    border-radius: 0;
    color: var(--blue);
    font-family: "Futura PT Demi";
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
}
.product-tab-inner .nav-item:first-child {
    padding: 2px 5px;
}
.product-tab-inner .nav-item:not(:first-child) button {
    padding: 10px 40px;
    min-width: 200px;
}
.product-tab-inner .nav-item .active {
    background-color: var(--blue);
    color: var(--white);
}
.tab-content .cards {
    display: flex;
    flex-wrap: wrap;
}
.tab-content .card {
    flex: 0 0 20%;
    border-radius: 0;
    border-color: #e8e9ec;
    margin-top: 40px;
    cursor:pointer;
}
.tab-content .card .card-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.tab-content .card .card-img img {
    max-height: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.tab-content .tab-pane > h2,
.heading h2 {
    margin-top: 72px;
    font-size: 34px;
    color: var(--blue);
    font-family: "Futura PT";
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
}
.tab-content .tab-pane > h2 > span,
.heading h2 span {
    font-weight: 900;
    font-size: inherit;
    font-family: inherit;
}
.tab-content .card .content {
    background-color: var(--blue);
    padding: 11.6px 16px;
    text-align: center;
    flex: 1;
}
.tab-content .card .content p {
    margin: 0;
    font-size: 16px;
    font-family: "Futura PT";
    font-weight: 900;
    color: var(--white);
}

.breadcrumbs { padding:0 0 30px 0; }
.breadcrumbs UL { font-size:0; padding:0; margin:0; }
.breadcrumbs LI { display:inline-block; font-size:14px; padding:0 10px 0 0; color:#b9b9b9; line-height:16px; }
.breadcrumbs LI IMG { max-height:14px; }
.breadcrumbs LI A { color:#b9b9b9; }
.breadcrumbs LI:after { content:'\203A'; padding-left:10px; }
.breadcrumbs LI:last-child:after { content:''; }

.product-tab-inner .tab-pane H2 { margin:0; }

.client {
    margin-top: 50px;
    padding: 0 20px;
    height:57px;
    overflow:hidden;
}
.client .client-slider {
    overflow: hidden;
}
.client .slick-slide {
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
}
.client .slick-track {
    display: flex;
}
.client .slide {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    object-fit: cover;
}
.client .slide img {
    max-width: 100%;
    max-height: 100%;
}
.heading h2 {
    margin-top: 0;
}
.our-news .heading {
    margin-bottom: 42px;
}
.our-news-inner .container {
    max-width: 920px;
}
.our-news-inner {
    padding: 26px 0;
}
.our-news-inner .news-card {
    position: relative;
    margin-bottom: 23px;
    max-height: 220.64px;
}
.our-news-inner .news-card .image-wrapper {
    max-height: 100%;
}
.our-news-inner .news-card .image-wrapper img {
    object-fit: cover;
    height: 100%;
    object-position: center;
}
.our-news-inner .news-card.card-1 .image-wrapper img,
.our-news-inner .news-card.card-4 .image-wrapper img {
    aspect-ratio: 589.33/220.64;
}
.our-news-inner .news-card.card-2 .image-wrapper img,
.our-news-inner .news-card.card-3 .image-wrapper img {
    aspect-ratio: 282.66/220.64;
}
.our-news-inner .news-card.card-3,
.our-news-inner .news-card.card-4 {
    margin-bottom: 0;
}
.our-news-inner .news-card::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 30%, 0% 100%, 100% 100%);
    width: 100%;
    height: 150px;
    background-color: rgb(2 153 209 / 60%);
    bottom: 0;
    left: 0;
    z-index: 1;
}
.our-news-inner .news-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}
.our-news-inner .news-card.card-2 .content,
.our-news-inner .news-card.card-4 .content {
    justify-content: flex-start;
}
.our-news-inner .news-card.card-4 .content {
    padding-left: 40px;
}
.our-news-inner .news-card .content h3 {
    margin: 0 0 12px;
    font-family: "Futura PT";
    font-weight: 700;
    text-transform: uppercase;
    font-size: 36px;
}
.our-news-inner .news-card.card-3::before {
    clip-path: polygon(96% 0, 101% 0, 100% 50%, 100% 100%, 59% 100%, 80% 46%);
    height: 100%;
}
.our-news-inner .news-card.card-3 .content h3 {
    font-size: 18px;
}
.our-news-inner .news-card.card-3 .content {
    justify-content: flex-end;
}
.our-news-inner .news-card.card-4::before {
    clip-path: polygon(0 0, 17% 0, 32% 100%, 0% 100%);
    height: 100%;
}
.map-sec {
    padding: 66px 0;
}
.map-sec .container:last-child {
    max-width: 1279px;
}
.map-sec .map-img {
    margin: 62px 0 46px;
}
.footer .container .container-medium {
    margin: 0 auto;
}
.footer-top {
    padding: 48px 0;
}
.footer-top .question h3 {
    margin: 0;
    font-size: 30px;
    font-family: "Futura PT";
    font-weight: 400;
}
.footer-top .question h2 {
    margin: 20px 0 0;
    font-size: 48px;
    font-family: "Futura PT";
    font-weight: 500;
    color: var(--blue);
    line-height: 1.2;
}
.footer-top .question-cards {
    display: flex;
    flex-wrap: wrap;
    max-width: 740px;
    margin: 26px auto 0;
}
.footer-top .question-cards .qus-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.qus-card-img {
    height: 55px;
    display: flex;
    align-items: center;
}
.qus-card-img img {
    width: 53px;
}
.footer-top .question-cards .qus-card:nth-child(2) .qus-card-img img {
    width: 31px;
}
.footer-top .question-cards .qus-card-content h4 {
    margin: 16px 0 0;
    font-size: 18px;
    font-family: "Futura PT";
    font-weight: 500;
}
.footer-top .question-cards .qus-card-content p {
    margin: 6px 0 0;
    font-size: 14px;
    font-family: "Futura PT";
    font-weight: 500;
}
.footer-top .question-cards .qus-card-content p a {
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    font-weight: inherit;
}
.footer {
    background-color: #04567c;
    padding: 66px 0 40px;
}
.footer-inner h3,
.social-media h3 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 20px;
    font-family: "Futura PT";
    font-weight: 900;
    text-transform: uppercase;
}
.social-media h3 {
    font-weight: 500;
    font-size: 14px;
    text-align: right;
}
.footer-inner .col-md-2 {
    width: 14.5%;
}
.footer-inner .col-md-2:nth-last-child(2) {
    width: 23%;
}
.footer-inner ul {
    padding-left: 0;
    list-style: none;
}
.footer-inner ul li {
    margin-bottom: 2px;
}
.footer-inner ul li a {
    text-decoration: none;
    font-size: 16px;
    color: var(--white);
    font-family: "Futura PT";
    font-weight: 500;
}
.footer-inner ul li a:hover {
    text-decoration: underline;
}
.social-media {
    margin-top: 24px;
    max-width: 1277px;
    margin: 0 auto;
}
.social-media .icon {
    display: flex;
    justify-content: flex-end;
}
.social-media .icon img {
    width: 16px;
}
.social-media .icon a {
    width: 40px;
    height: 40px;
    display: block;
    background-color: #fff;
    margin-left: 14px;
    border-radius: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bottom-copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
.bottom-copyright p {
    color: var(--white);
    margin: 0;
    font-family: "Futura PT";
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
}
.bottom-copyright p a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
    font-family: inherit;
    font-weight: inherit;
    margin: 0 14px;
}
.bottom-copyright p a:hover {
    text-decoration: underline;
}
.bottom-copyright p:last-child {
    padding-right: 60px;
}
.arrow-link {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow-link::before {
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--blue-100);
}

/*product-resultaat page css*/
.page-title {
    display: block;
    margin-top: 90px;
    margin-bottom: 50px;
}
.page-title h2 {
    font-size: 60px;
    color: var(--blue);
    font-family: "Futura PT";
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}
.page-title p {
    font-family: "Futura PT";
    font-size: 14px;
    color: var(--black-700);
    font-weight: 500;
    line-height: 1.7;
    margin-top: 0;
}
.page-title:has(p) h2 {
    margin-bottom: 35px;
}
.product-info-column .logo-img {
    transform: translateX(-15px);
}
.product-info-column .product-name {
    font-size: 0px;
    font-family: "Futura PT Demi";
    margin: 0;
    font-weight: 600;
    width: 105%;
    text-transform: uppercase;
}

.product-info-column p {
    color: var(--black-100);
    font-size: 14px;
    font-family: "Futura PT Demi";
    font-weight: 600;
    max-width: 85%;
    line-height: 1.5;
}

.product-info-column .right-image {
    text-align: center;
}
.product-specification .specification-heading {
    background-color: var(--orange);
    color: var(--white);
    width: 331px;
    margin-bottom: 25px;
    max-width: 100%;
}
.product-specification .specification-heading h3 {
    font-family: "Futura PT";
    text-transform: uppercase;
}
.product-specification .specification-content ul {
    row-gap: 30px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--black-100);
    list-style: none;
}
.product-specification .specification-content ul li {
    font-family: "Futura PT Book";
		font-size:1.2em;
}
.product-specification .specification-content ul li strong {
    font-family: "Futura PT Demi";
    font-weight: 600;
	font-size:1.2em;
}
.product-img-slider .image-slider {
    display: grid;
    grid-template-columns: 75.3% 1fr;
    gap: 25px;
}
.product-img-slider .image-slider img {
    width: 100%;
}
.product-img-slider .image-slider .thumbnail-slider {
    margin: -5px 0;
}
.product-img-slider .image-slider .thumbnail-slider .item {
    padding: 5px 0;
}
.section-heading h4 {
    font-size: 18px;
    background: var(--blue);
    color: var(--white);
    font-family: "Futura PT";
    font-weight: 900;
    text-transform: uppercase;
    padding: 13px 20px;
    margin-bottom: 40px;
}

.form-control,
.form-control:focus {
    background-color: var(--input-bg) !important;
    font-size: 18px;
    appearance: none;
    color: var(--black-700);
    font-family: "Futura PT";
    padding: 18px 20px;
    font-weight: 900;
    border-radius: 0;
    border: 1px solid var(--grey-100);
}
select.form-control {
    background: url(../images/select-arrow.png) center right 15px no-repeat;
}
.form-control:not(textarea) {
    min-height: 68px;
}

.btn {
    width: 215px;
    max-width: 100%;
    text-align: center;
    font-size: 18px;
    color: var(--black-700);
    font-family: "Futura PT";
    padding: 18px 25px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid var(--grey-100);
}
.btn-primary {
    background: var(--black-700);
    color: var(--white);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--blue) !important;
}
.matching-product-section {
    overflow-x: hidden;
}
.maching-products-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.maching-products-list .list-items {
    display: grid;
    grid-template-columns: 198px 1fr;
    gap: 25px;
}
.maching-products-list .list-items h5 {
    color: var(--blue);
    font-family: "Futura PT Demi";
    font-weight: 600;
    line-height: 1.4;
    font-size: 18px;
    text-transform: uppercase;
    margin: 10px 0 0;
}
.product-img-gallery .images {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 17px;
    width: 100%;
    /* max-width: 760px; */
}
.product-img-gallery .images .large-img {
    grid-row: 1 / 4;
}
.product-img-gallery .images img {
    width: 100%;
    height: 100%;
	visibility: hidden;
	cursor:pointer;
	width:157px;
	height:130px;
}
.product-img-gallery p {
    color: var(--black-100);
}

/*sell your equipment page css*/
.contact-infomation .contact-infomation-inner {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 60px;
    row-gap: 30px;
}
.contact-infomation .contact-big-form .form-control,
.contact-infomation .contact-big-form .form-control:focus {
    background-color: var(--white) !important;
    border-color: var(--grey-200);
    padding: 12px 20px;
    font-family: "Futura PT Book";
    font-weight: normal;
}
.contact-infomation .contact-big-form .form-control:not(textarea) {
    min-height: 58px;
}
.contact-infomation .contact-big-form .btn {
    width: auto;
}
.contact-infomation .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.contact-infomation .contact-info h4 {
    color: var(--blue);
    font-size: 24px;
    font-family: "Futura PT";
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
}
.contact-infomation .contact-info p {
    margin-bottom: 0;
}
.contact-infomation .contact-info p,
.contact-infomation .contact-info p a {
    font-family: "Futura PT Book";
    color: var(--black-700);
    text-decoration: none;
    line-height: 1.12;
}
.contact-infomation .contact-info p a:hover {
    text-decoration: underline;
}
.contact-infomation .contact-info p.whatsapp {
    line-height: 1.3;
}
.contact-infomation .contact-info p.whatsapp,
.contact-infomation .contact-info p.whatsapp a {
    font-size: 18px;
    font-family: "Futura PT";
    font-weight: 500;
}
.pi-news{
    padding-bottom: 184px;
}
.pi-news .row {
    gap: 30px 0;
}
.pi-news .news-card {
    box-shadow: 0 2px 10px rgba(0 0 0 / 8%);
    height: 100%;
    display: flex;
    flex-flow: column;
}
.pi-news .news-card .card-img {
    position: relative;
    padding-top: 62%;
    border: 2px solid #c3c3c3;
}
.pi-news .news-card .card-img img {
    position: absolute;
    width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.pi-news .news-card .card-content {
    padding: 45px 20px;
    flex: 1;
    display: flex;
    flex-flow: column;
}
.pi-news .news-card .card-content h5,
.pi-news .news-card .card-content p {
    margin: 0;
    line-height: 1.5;
    font-family: "Futura PT";
    font-size: 18px;
}
.pi-news .news-card .card-content h5{
    margin-bottom: auto;
}
.pi-news .news-card .card-content p {
    margin-top: 22px;
}

/* Responsive */
@media screen and (min-width: 768px) {
    .banner .banner-arrow {
        max-width: 1583px;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translateX(-50%);
        z-index: 1;
    }
}
@media screen and (min-width: 992px) {
    .contact-infomation .contact-infomation-inner {
        grid-template-columns: 1fr 323px;
    }
    .page-title p {
        width: 92.5%;
    }
}
@media screen and (min-width: 1025px) {
    .navbar-nav ul li span {
        display: none;
    }
    .menu-group-link {
        display: none;
    }
}
@media screen and (min-width: 1200px) {
    .footer .container:last-child {
        padding-left: 34px;
        padding-right: 234px;
    }
}
@media screen and (min-width: 1400px) {
    .contact-infomation .contact-infomation-inner {
        grid-template-columns: 1fr 405px;
    }
}

.product-img-gallery.colum-4-container .images .large-img{
grid-row:auto;
}

.imge-grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (min-width: 1601px) {
    .matching-product-section .maching-products-outer {
        width: 115%;
    }
}
@media screen and (max-width: 1480px) {
    header .container {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }
    .banner .slide .col-md-8 {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .banner .slide .col-md-4 {
        padding-top: 90px;
    }
}
@media screen and (max-width: 1366.5px) {
    .banner .slide h1 {
        font-size: 36px;
        max-width: 550px;
    }
    .banner .slide .right-side p {
        margin-bottom: 40px;
    }
    .banner .slide .col-md-4 {
        padding-top: 60px;
    }
    .banner .slide .right-side p,
    .footer-top .question h3 {
        font-size: 18px;
    }
    .product-tab,
    .map-sec,
    .footer {
        padding: 60px 0;
    }
    .tab-content .tab-pane > h2,
    .heading h2,
    .footer-top .question h2,
    .our-news-inner .news-card .content h3 {
        font-size: 28px;
    }
    .footer-top .question h2 {
        margin-top: 12px;
    }
    .footer {
        padding-bottom: 40px;
    }
}
@media screen and (max-width: 1300px) {
    .right-whatsapp {
        font-size: 11px;
    }
    .page-title h2,
    .product-info-column .product-name {
        font-size: 48px;
    }
    .p-100 {
        padding: 50px;
    }
    .specification-heading h3 {
        font-size: 24px;
    }
}
@media screen and (max-width: 1200px) {
    .pi-news{
        padding-bottom: 90px;
    }
    .banner .slide .col-md-4 {
        padding: 60px 24px 0;
    }

    .navbar-nav ul li a {
        font-size: 14px;
    }
    .navbar-nav ul li {
        padding: 12px;
    }
    section.paddingBottom {
        padding-bottom: 60px;
    }
    section.paddingTop {
        padding-top: 40px;
    }
    header .right-header {
        padding-left: 20px;
    }
    .header-top h2 {
        font-size: 18px;
    }
    header .header-inner .logo img {
        max-width: 100px;
    }
    header .header-top {
        padding-top: 0;
    }
    header .bottom-header {
        padding-top: 9px;
    }
    .navbar-nav ul li {
        padding: 10px 12px;
    }
    .right-whatsapp {
        font-size: 10px;
    }
    .banner .slide h1 {
        font-size: 28px;
        max-width: 420px;
    }
    .banner .slide .right-side p,
    .footer-top .question h3,
    .product-tab-inner .nav-item button {
        font-size: 16px;
    }
    .tab-content .card .content,
    .tab-content .card .content p {
        font-size: 14px;
    }
    .tab-content .tab-pane > h2,
    .heading h2,
    .footer-top .question h2,
    .our-news-inner .news-card .content h3 {
        font-size: 22px;
    }
    .banner .slick-next,
    .banner .slick-prev {
        background-size: 40%;
        background-position: center;
    }
    .client {
        margin-top: 60px;
    }
    .client .slick-dots {
        display: none !important;
    }
    .product-tab {
        padding-top: 20px;
    }
    .tab-content .card {
        flex: 0 0 25%;
    }
    .page-title h2,
    .product-info-column .product-name {
        font-size: 36px;
    }

    .specification-heading h3 {
        font-size: 21px;
    }
}
@media screen and (max-width: 1024px) {
    .navbar-nav ul li img {
        display: none;
    }
    .hidden-desktop {
        display: block;
    }
    header .col-md-6 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    header .navbar-nav {
        justify-content: flex-end;
    }
    .navbar-nav ul,
    .hidden-tab {
        display: none;
    }
    .navbar-nav ul li,
    .navbar-nav ul li:first-child {
        padding: 12px;
        width: 100%;
        display: block;
        border-bottom: 1px solid var(--grey);
    }
    .hamburger-button {
        width: 32px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        background-color: transparent;
        border: none;
        outline: none;
        padding: 0;
        z-index: 9;
    }
    .hamburger-button span {
        width: 100%;
        height: 3px;
        transform-origin: left;
        transition: all 0.4s ease;
        will-change: transform;
        background-color: var(--blue);
    }
    .navbar-nav.active .hamburger-button span:first-child {
        transform: rotate(37deg);
    }
    .navbar-nav.active .hamburger-button span:nth-child(2) {
        transform: translateX(100%);
        opacity: 0;
    }
    .navbar-nav.active .hamburger-button span:last-child {
        transform: rotate(-37deg);
    }
    body.active {
        overflow-y: hidden;
    }
    .navbar-nav ul {
        width: 100%;
        position: fixed;
        left: -120%;
        top: 0;
        height: 100vh;
        background-color: #fafafa;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
    }
    .navbar-nav ul {
        overflow: auto;
        width: 100vw;
        display: block;
        padding: 40px 15px;
    }
    .navbar-nav.active ul {
        left: 0;
    }
    .submenu::before {
        display: none;
    }
    .submenu,
    .submenu-large {
        position: initial;
        display: none;
        min-width: 100% !important;
    }
    .submenu.show-menu {
        display: block;
    }
    .submenu-large {
        margin-top: 15px;
    }
    .submenu ul {
        position: static;
        width: 100%;
        height: auto;
        background: transparent;
        padding: 0;
    }
    .submenu-large ul {
        column-count: initial;
    }
    .navbar-nav ul li .submenu ul li {
        padding: 14px 0px;
    }
    .navbar-nav ul li .submenu ul li > a {
        padding: 0 25px;
        text-align: left;
    }
    header .header-top,
    .right-whatsapp {
        display: none;
    }
    .navbar-nav {
        flex: 1;
    }
    header .bottom-header {
        padding-top: 0px;
    }
    header .header-inner {
        align-items: center;
    }
    .navbar-nav {
        flex: 100%;
        max-width: 33px;
    }
    header .bottom-header {
        justify-content: flex-end;
    }
}
@media screen and (max-width: 991px) {
    .page-title h2,
    .product-info-column .product-name {
        font-size: 30px;
    }

    .specification-heading h3 {
        font-size: 18px;
    }
    .p-100 {
        padding: 40px;
    }
}
@media screen and (max-width: 880px) {
    .tab-content .card {
        flex: 0 0 33.33%;
    }
    .banner .slide .col-md-4 {
        padding: 40px 16px 0;
    }
    .banner .slide .right-side p,
    .footer-inner h3,
    .social-media h3 {
        font-size: 14px;
        line-height: 1.2;
    }
    .social-media h3 {
        text-align: center;
    }
    .product-tab-inner .nav-item:not(:first-child) button {
        padding: 10px 30px;
    }
    .tab-content .tab-pane > h2,
    .heading h2 {
        margin-top: 60px;
    }
    .heading h2 {
        margin-top: 0;
    }
    .footer-inner .col-md-2,
    .footer-inner .col-md-2:nth-last-child(2) {
        width: 16.5%;
    }
    .bottom-copyright p:last-child {
        padding-right: 0;
    }
    .banner .container {
        padding-left: 90px;
        padding-right: 90px;
    }
    .banner .slick-next {
        right: 20px;
    }
    .banner .slick-prev {
        left: 20px;
    }
    .our-news-inner .news-card {
        height: calc(100% - 23px);
    }
    .our-news-inner .news-card .image-wrapper {
        min-height: inherit;
        height: 100%;
    }
}
@media screen and (max-width: 1024px) and (min-width: 767px) {
    footer > .container {
        display: flex;
    }
}
@media screen and (max-width: 767.5px) {
    .pi-news{
        padding-bottom: 40px;
    }
    .product-tab-inner .nav-item:not(:first-child) button {
        min-width: auto;
    }
    .product-tab-inner ul {
        display: flex;
        justify-content: center;
        gap: 16px 0;
    }
    .logo {
        max-width: 280px;
    }
    header .row {
        flex-wrap: nowrap;
    }
    header .row .col-md-3 {
        width: 70%;
    }
    header .row .col-md-9,
    header .col-md-6 {
        width: 30%;
        max-width: 30%;
        flex: 0 0 30%;
    }
    header {
        padding: 12px 0;
    }
    .banner .slide .col-md-8 {
        padding: 60px 0 26px;
    }
    .banner .slide .col-md-4 {
        margin-bottom: 40px;
        padding: 26px 16px 20px;
    }
    .banner .slide .right-side p {
        margin-bottom: 20px;
    }
    .client {
        margin-top: 40px;
    }
    .product-tab {
        padding-top: 40px;
    }
    .tab-content .card {
        flex: 0 0 50%;
    }
    .our-news .heading {
        margin-bottom: 36px;
    }
    .product-tab,
    .map-sec,
    .footer {
        padding: 40px 0;
    }
    .our-news-inner .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .our-news-inner .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .our-news-inner .news-card {
        margin-bottom: 0;
    }
    .our-news-inner .row {
        gap: 24px 0;
    }
    .our-news-inner .news-card .content h3,
    .pi-news .news-card .card-content h5, 
    .pi-news .news-card .card-content p {
        font-size: 16px;
    }
    .our-news-inner .news-card.card-3 .content h3 {
        font-size: 12px;
    }
    .heading h2 {
        font-size: 18px;
    }
    .map-sec .map-img {
        margin: 40px 0;
    }
    .footer-top {
        padding: 40px 0;
    }
    .pi-news .news-card .card-content p {
        margin-top: 14px;
    }
    .pi-news .news-card .card-content {
        padding: 20px 14px;
    }
    .pi-news .row {
        gap: 26px 0;
    }
    .footer-inner .col-md-2,
    .footer-inner .col-md-2:nth-last-child(2) {
        width: 100%;
    }
    .social-media h3 {
        text-align: center;
    }
    .social-media .icon {
        justify-content: center;
    }
    .social-media .icon a {
        margin-left: 0;
        margin-right: 16px;
    }
    .bottom-copyright {
        gap: 16px;
        justify-content: center;
    }
    .bottom-copyright p {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-top .question-cards .qus-card {
        flex: 50%;
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    .footer-top .question-cards .qus-card:last-child {
        margin-bottom: 0;
    }
    .banner .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .banner .slick-next {
        right: 20px;
        bottom: 20px;
        top: auto;
        transform: initial;
        background-position: bottom;
        height: 60px;
    }
    .banner .slick-prev {
        left: auto;
        right: 60px;
        bottom: 20px;
        top: auto;
        transform: initial;
        background-position: bottom;
        height: 60px;
    }
    .banner .slick-next,
    .banner .slick-prev {
        background-size: 30%;
    }
    .banner .slide {
        padding-bottom: 40px;
    }
    .banner .slide h1 {
        font-size: 22px;
        line-height: 1.6;
    }
    header .header-inner .logo img {
        max-width: 60px;
    }
    .product-img-gallery .images {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
        column-gap: 17px;
    }
    .product-img-gallery .images .large-img {
        grid-column: 1 / 4;
    }
    .tab-content .card .content {
        padding: 11.6px 8px;
    }
    .our-news-inner .news-card {
        height: 100%;
    }
    .pi-news .col-md-4 {
        width: 50%;
    }
}
@media screen and (max-width: 540px) {
    .footer-top .question-cards .qus-card {
        flex: 100%;
    }
    .heading h2 {
        line-height: 1.4;
    }
    .our-news-inner .news-card.card-4 .content {
        padding-left: 16px;
    }
    .our-news-inner .news-card .content {
        padding: 0 16px;
    }
    .tab-content .card {
        flex: 0 0 50%;
        margin-top: 20px;
    }
    .product-tab-inner .nav-item:not(:first-child) button {
        padding: 10px 24px;
    }
    .our-news-inner .col-md-4,
    .our-news-inner .col-md-8 {
        width: 100%;
    }
    .banner .slide h1 {
        font-size: 22px;
    }
    .maching-products-list .list-items {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .maching-products-list .list-items img,
    .pi-news .col-md-4 {
        width: 100%;
    }
    .our-news-inner .col-md-4 {
        width: 50%;
    }
    .our-news-inner .news-card {
        max-height: unset;
    }
}
@media screen and (min-width: 541px) and (max-width: 991px) {
    .contact-infomation .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}


@media screen and (max-width: 767.5px){
.product-img-gallery.colum-4-container .images {
        
        display: flex;
        flex-wrap: wrap;
    }

    .product-img-gallery.colum-4-container .images .large-img {
        
        width:100%;
    }

    .imge-grid-row {
        flex-wrap: nowrap;
        flex: auto;
    }

}



/* Wizzardnet */
	.wizLink:hover p{
        text-decoration: underline;
    }
	.wizLink:hover h3{
        text-decoration: underline;
    }
	 .wizLink a:hover {
        text-decoration: underline;
        text-decoration-color: white;
    }



.sold-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
	 transform: translate(-50%, -50%);
    width: 60%; 
}

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-link {
    /* background-color: #f1f1f1; */
    /* color: black; */
    /* padding: 16px; */
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
	display: none;
    position: absolute;
    background-color: #195A9A;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	width: 100%;
    left: 0;
    top: 100%; 
	max-height: 420px; /* de maximale hoogte */
    overflow-y: auto;  
}

.dropdown-content a {
    color: rgba(255, 255, 255, 0.6); /* Wit met 70% opaciteit */
    font-family: inherit;    font-family: "Futura PT Demi";
    text-transform: uppercase; text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6); /* Subtiele grijze ondergrens */
	padding-bottom: 0px; /* Ruimte onder de tekst */
	margin-top:3px;
	margin-bottom:3px;
	font-size:12px;
}


.dropdown-content a:hover {background-color: #ddd;}

.nav-item:hover .dropdown-content {
    display: block;
}

.nav-item:not(:first-child) button {
    padding: 10px 5px !important;
    min-width: 100px !important;
}

.arrow {
    display: inline-block;
    margin-left: 5px;
}

.extendedItems {
	border: 0.5px solid #757A7E !important;
	
}

.extendedLink {
	font-size:12px !important;
	color:#757A7E !important;
	min-width:80px !important;
}

.nav-link.extendedLink.arrow::after {
    content: " ▼"; /* Unicode karakter voor een naar beneden wijzend pijltje */
    display: inline-block;
    margin-left: 5px; /* Voegt ruimte toe tussen de tekst en het pijltje */
}

.btn-hover:hover {
    transform: scale(1.1); /* Vergroot de knop met 10% */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Maakt de transformaties vloeiend */
    background-color: #6DC4E4; /* Verander de achtergrondkleur bij hover */
}


.thumbnail {
    width: 100%; /* zorgt ervoor dat de breedte van de thumbnail de volledige kolombreedte inneemt */
    height: auto; /* behoudt de aspect ratio van de afbeeldingen */
    display: block; /* zorgt ervoor dat elke thumbnail op een nieuwe regel staat */
}


/* Wizzardnet */