body {
    padding: 0px;
    margin: 0px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Roboto-Regular';
    font-size: 1.6rem;
    background-color: #FFF;
    /*overflow-x: hidden;*/
}

html {
    font-size: 62.5%;
}

/*#page{
	overflow: hidden;
}*/
#mobile-contact-bar {
    display: none;
}

/****captcha****/
.grecaptcha-badge {
    display: none;
}

.formError {
    z-index: 1 !important;
}

.star_icon p {
    margin-bottom: 0;
}

/****cookie-fix****/
.cmn-cookie-info ul {
    margin-bottom: 0;
}

.cmn-cookie-info li {
    padding-left: 0;
    margin-bottom: 0;
}

.cmn-cookie-info li::after {
    display: none;
}

.cookie-close img {
    width: 15px;
}

/*****header-area****/
.header-area {
    position: fixed;
    padding-top: 35px;
    width: 100%;
    z-index: 99;
}

.header-wrap {
    border-radius: 20px;
    background-color: #121212;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    padding: 21px 16px 13px 35px;
    /* backdrop-filter: blur(10px); */
    position: relative;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.header-logo {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.header-logo img {
    width: 163px;
}

.header-nav>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 34px;
}

.header-nav>ul>li {
    color: #fff;
    font-family: 'Roboto-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    padding-bottom: 10px;
}

.header-nav>ul>li>a {
    color: #fff;
}

.header-nav>ul>li>a:hover {
    color: #FDBF03;
}

.parent-dropdown>ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #022B36;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.2);
    min-width: 170px;
    margin-top: 10px;
    margin-bottom: 0;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: all 0.7s;
    opacity: 0;
    pointer-events: none;
    list-style: none;
    padding: 0;
    max-height: 120px;
    overflow-y: auto;
}

.parent-dropdown>ul::-webkit-scrollbar {
    display: none;
}

.parent-dropdown>img {
    position: absolute;
    right: 0;
    top: 10px;
    width: 12px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.parent-dropdown.open ul {
    max-height: 200px;
    opacity: 1;
    pointer-events: all;
}

.parent-dropdown.open img {
    transform: rotate(180deg);
}

.parent-dropdown {
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}

.parent-dropdown>ul>li {
    font-family: 'InterTight-Regular';
    font-size: 1.6rem;
    position: relative;
    text-align: center;
}

.parent-dropdown>ul>li>a {
    color: #fff;
    padding: 5px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
}

.parent-dropdown>ul>li:last-child>a {
    border-bottom: 0;
}

.parent-dropdown>ul>li>a:hover {
    color: #FDBF03;
}

.header-active .header-wrap {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/******menu-btn******/
.menu-btn {
    display: flex;
    border-radius: 8px;
    background-color: #FDBF03;
    padding: 7px 4px 7px 14px;
    color: #03151A;
    font-family: 'InterTight-Medium';
    font-size: 1.4rem;
    line-height: 22px;
    cursor: pointer;
    max-width: 100px;
    margin-left: auto;
    align-items: center;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.menu-bar {
    position: relative;
    width: 32px;
    height: 32px;
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.menu-bar div,
.menu-bar::after,
.menu-bar::before {
    display: block;
    background-color: #121212;
    content: '';
    height: 2px;
    margin: 3px 0;
    width: 22px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.menu-bar div {
    display: none;
}

.menu-btn.active .menu-bar:before {
    transform: translateY(4px) rotate(135deg);
}

.menu-btn.active .menu-bar:after {
    transform: translateY(-4px) rotate(-135deg);
}

/*****side-menu****/
.side-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 400px;
    background-color: rgba(18, 18, 18, 1);
    padding: 170px 40px 40px;
    z-index: 98;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.side-menu-active {
    clip-path: inset(0 0 0 0);
    pointer-events: all;
}

.side-menu-wrap {
    height: 100%;
    overflow-y: auto;
}

.side-menu ul {
    margin-bottom: 0;
}

.side-menu>.side-menu-wrap>ul>li {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 2rem;
    display: table;
}

.side-menu>.side-menu-wrap>ul>li::before {
    display: none;
}

.side-menu>.side-menu-wrap>ul>li>a {
    color: #fff;
}

.side-menu>.side-menu-wrap>ul>li>a:hover {
    color: #FDBF03;
}

.side-menu .parent-dropdown {
    padding-right: 18px;
    max-height: 200px;
    overflow-y: auto;
}

.side-menu .parent-dropdown ul {
    left: 0;
    transform: translateX(0);
}

.side-menu .parent-dropdown img {
    top: 15px;
    width: 10px;
}

.body-overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.body-overlay-active {
    opacity: 1;
    pointer-events: all;
}

.menu-up .header-wrap {
    border-color: transparent;
    background-color: transparent;
    backdrop-filter: blur(0);
    box-shadow: none !important;
}

.menu-up .header-logo {
    opacity: 0;
}

/*****banner-sec***/
.banner-sec {
    position: relative;
}

.banner-sec::before {
    content: "";
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 0%, #121212 100%);
    z-index: 2;
}

.banner-video,
.each-banner {
    height: 849px;
}

.banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}

.banner-slider {
    height: 100%;
}

.banner-sec .swiper-slide {
    height: auto;
}

.each-banner img {
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
}

.banner-content h1 {
    margin-bottom: 24px;
}

.banner-content p {
    color: #fff;
    margin: 16px auto 40px;
    max-width: 551px;
    width: 100%;
    font-family: 'Roboto-Medium';
}

/******product-sec******/
.product-sec {
    padding: 70px 0 60px;
    position: relative;
}

.product-sec .container {
    position: relative;
    z-index: 3;
}

.product-heading {
    text-align: center;
    margin-bottom: 50px;
}
.product-heading h2{
    color: #121212;
}
.product-heading h4 {
    color: #FDBF03;
    margin-bottom: 16px;
    font-family: 'InterTight-Bold';
}

.sec-line {
    position: absolute;
    right: 0;
    top: 0;
    /* height: 100%; */
    /* width: 100%; */
    pointer-events: none;
    /* opacity: 0.5; */
}

.sec-line img {
    /* height: 100%;
    object-fit: cover; */
    object-position: top;
}

.product-slider-top {
    position: relative;
}

.product-slider-top .col-lg-7 {
    width: 53%;
}

.product-slider-top .col-lg-5 {
    width: 47%;
}

.product-slider-top .swiper-button-next {
    right: -28px;
}

.product-slider-top .swiper-button-prev {
    left: -28px;
}

.product-slider-img {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.each-product-img {
    border-radius: 20px;
    overflow: hidden;
}

.product-slider-img .swiper {
    height: 100%;
}

.product-slider-img .swiper-slide {
    height: auto;
}

.each-product-img {
    height: 100%;
}

.each-product-img img {
    height: 100%;
    object-fit: cover;
}

.product-slider-text {
    border-radius: 20px;
    background-color: #F8F8F7;
    padding: 32px;
    height: 100%;
    position: relative;
    /* border-top: 1px solid #98B0B4;
    border-bottom: 1px solid #98B0B4; */
}

.product-slider-text::after {
    content: "";
    height: calc(100% - 1px);
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(3px);
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.product-slider-text .swiper {
    z-index: 2;
    border-radius: 10px;
}

.each-product-model h3 {
    font-size: 2.8rem;
    font-family: 'Roboto-Bold';
    line-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #121212;
}

.each-product-model h6 {
    color: rgba(18, 18, 18, 0.8);
    font-family: 'InterTight-Regular';
    margin-top: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    padding: 14px;
    margin-top: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid rgba(18, 18, 18, 0.20);
    background: #FFF;
}

.product-price h4 {
   font-family: 'Roboto-Bold';
}

.product-price strong {
    font-weight: normal;
    color: rgba(18, 18, 18, 0.8);
    font-family: 'Roboto-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-right: 12px;
}

.normal-price h4 {
    color: #FDBF03;
}

.monthly-price {
    padding-left: 15px;
    border-left: 2px solid#fff;
    width: 60%;
    text-align: right;
}

.product-price-mob {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 14px;
}

.product-price-mob::after,
.product-price-mob::before {
    top: 50%;
    transform: translateY(-50%);
}

.product-price-mob h4 {
    color: #03151A;
    font-size: 1.4rem;
    line-height: 22px;
    font-family: 'InterTight-Bold';
}

.product-price-mob h4 strong {
    font-weight: normal;
    color: rgba(3, 21, 26, 0.80);
    font-family: 'InterTight-Regular';
    margin-right: 14px;
}

.product-price-mob .monthly-price {
    padding-left: 0;
    border-left: 0;
    width: auto;
    text-align: left;
}

.product-spec {
    margin: 16px 0;
}

.each-product-spec {
    position: relative;
    display: flex;
    column-gap: 16px;
    align-items: center;
    overflow: hidden;
    padding: 16px;
    height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(18, 18, 18, 0.20);
    background: #FFF;
}
.product-spec-img {
    width: 40px;
    min-width: 40px;
}
.product-spec-mark {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 77px;
    height: 100%;
    pointer-events: none;
}

.product-spec-mark img {
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.each-product-spec h6 {
    color: rgba(18, 18, 18, 0.53);
    font-family: 'Roboto-Regular';
    margin-bottom: 4px;
}

.each-product-spec h4 {
    font-family: 'Roboto-Medium';
    color: #121212;
}

.product-spec .row {
    row-gap: 15px;
}

.product-spec-text {
    position: relative;
    z-index: 1;
}

.each-product-btn {
    width: 100%;
    color: #000;
}

.product-slider-btm {
    margin-top: 16px;
    display: flex;
    column-gap: 16px;
    overflow: hidden;
}

.each-product-thumb {
    border-radius: 20px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.product-slider-thumb .swiper-slide-thumb-active .each-product-thumb {
    border-color: #FDBF03;
}

.product-cta {
    border-radius: 20px;
    min-width: 16%;
    background-color: #FDBF03;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.product-cta:hover {
    background-color: #022B36;
}

.product-cta:hover h4 {
    color: #fff;
}

.product-cta:hover span {
    background-color: #FDBF03;
}

.product-cta {
    color: #121212;
    line-height: 32px;
    font-family: 'Roboto-Bold';
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    font-size: 2rem;
}

.product-cta span {
    width: 84px;
    height: 84px;
    border-radius: 8px;
    position: relative;
    background-color: rgba(229, 187, 58, 1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    color: transparent;
}

.product-cta span::after {
    content: "";
    height: 30px;
    width: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/product-arrow.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
}

.product-slider-thumb {
    min-width: calc(100% - 18%);
}

.each-product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-text-swiper .swiper-slide {
    height: auto;
}

.product-top-line {
    top: -30%;
    z-index: 2;
}

.product-btm-line {
    left: 0;
    right: auto;
    bottom: 0;
    top: auto;
}

/*****service-sec******/
.service-sec {
    padding: 60px 0;
    background-color: #121212;
    position: relative;
}

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

.service-sec .sec-line {
    mix-blend-mode: soft-light;
}

.service-sec .sec-line img {
    object-position: center center;
}

.service-heading {
    margin-bottom: 60px;
}

.service-heading h4 {
    color: #FDBF03;
    margin-bottom: 16px;
    font-family: 'InterTight-Bold';
}

.service-sec .sec-line {
    object-position: center center;
    opacity: 0.5;
}

.each-service-info {
    position: relative;
    height: 100%;
}

.each-service-info-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
}

.each-service-info-img {
    height: 100%;
    width: 100%;
}

.each-service-info-img img {
    height: 100%;
    object-fit: cover;
}

.service-info {
    min-height: 576px;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service-info::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(3, 21, 26, 0.2);
}

.service-thumb {
    padding: 8px 40px 40px;
    border-radius: 20px;
    background-color: rgba(51, 51, 51, 0.20);
    height: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 20px;
}

.service-thumb ul {
    padding: 0;
    list-style: none;
    margin-bottom: 32px;
}

.service-thumb li {
    color: #fff;
    font-family: 'Roboto-Regular';
    font-size: 2.8rem;
    line-height: 40px;
    padding: 32px 50px 32px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.40);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.40);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    cursor: pointer;
}

.service-thumb li::after {
    content: '';
    height: 31px;
    width: 31px;
    position: absolute;
    right: 5px;
    top: 52%;
    transform: translateY(-50%);
    background-image: url(../images/service-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 31px;
}

.service-thumb li:hover,
.service-thumb li.service-thumb-active {
    color: #FDBF03;
    font-family: 'Roboto-Bold';
}

.service-thumb li:hover::after,
.service-thumb li.service-thumb-active::after {
    filter: brightness(0) saturate(100%) invert(86%) sepia(31%) saturate(5456%) hue-rotate(359deg) brightness(103%) contrast(99%);
}

.service-thumb li:first-child {
    border-top: 0;
}

.service-thumb .common-btn {
    display: block;
    color: #121212;
}

.service-thumb h6 {
    position: absolute;
    left: 16px;
    top: 32px;
    color: #fff;
    font-family: 'InterTight-Regular';
    font-size: 1.4rem;
    line-height: 22px;
    writing-mode: vertical-rl;
    display: none;
}

.each-service-info-text h3 {
    color: #FDBF03;
    font-family: 'InterTight-Bold';
}

.each-service-info-text p {
    margin: 16px 0 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.each-service-info {
    display: none;
}

.werkplaats-service {
    padding: 27px 40px;
    border-radius: 20px;
    background-color: rgba(53, 85, 94, 0.20);
    border-top: 1px solid #98B0B4;
    border-bottom: 1px solid #98B0B4;
    backdrop-filter: blur(2px);
    margin-top: 16px;
}

.werkplaats-service-heading {
    padding-right: 80px;
}

.werkplaats-service-heading h4 {
    margin-bottom: 16px;
    font-family: 'InterTight-Bold';
}

.werkplaats-service-heading p {
    margin-bottom: 0;
}

.werkplaats-service-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 68px 0;
    border-left: 2px dotted rgba(255, 255, 255, 0.40);
}

.werkplaats-service-marquee::after,
.werkplaats-service-marquee::before {
    content: "";
    height: 100%;
    width: 31%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(13, 51, 62, 0.00) 0%, #0D333E 100%);
    pointer-events: none;
}

.werkplaats-service-marquee::before {
    left: 0;
    right: auto;
    background: linear-gradient(-90deg, rgba(13, 51, 62, 0.00) 0%, #0D333E 100%);
    z-index: 1;
}

.werkplaats-service-marquee-wrap {
    display: flex;
    width: max-content;
    gap: 50px;
}

.werkplaats-service-marquee-wrap ul {
    display: flex;
    gap: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.werkplaats-service-marquee-wrap li {
    white-space: nowrap;
    line-height: normal;
    color: #fff;
    font-family: 'InterTight-Bold';
    font-size: 2.4rem;
    line-height: 24px;
    position: relative;
}

/*****about-cta-sec******/
.about-cta-sec {
    position: relative;
}

.about-cta-sec::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, rgba(3, 21, 26, 0.00) 0%, #03151A 100%); */
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 0%, #121212 100%);
}

.about-cta-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 86px;
    width: 100%;
    z-index: 1;
}

.about-cta-text-wrap {
    max-width: 706px;
    width: 100%;
    margin: 0 auto;
}

.about-cta-text h4 {
    color: #FDBF03;
    font-family: 'Roboto-Bold';
    margin-bottom: 16px;
}

.about-cta-text p {
    margin: 24px 0 60px;
}

/*****why-us-sec****/
.why-us-sec {
    position: relative;
    padding: 38px 0 120px;
}

.why-us-sec .container {
    position: relative;
    z-index: 1;
}

.why-us-wrap {
    border-radius: 20px;
    background-color: #F8F8F7;
    /* border-top: 1px solid #98B0B4;
    border-bottom: 1px solid #98B0B4; */
    overflow: hidden;
    /* backdrop-filter: blur(8px); */
}

.why-us-reach {
    display: flex;
    column-gap: 27px;
    max-width: 412px;
}

.why-us-reach-img {
    width: 129px;
    position: relative;
}

.why-us-reach-img-frame {
    height: 104px;
    width: 104px;
    border-radius: 100%;
    overflow: hidden;
    border: 2px dashed #FDBF03;
    padding: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 14px;
}

.why-us-reach-img-frame img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 100%;
}

.why-us-reach-text {
    padding-top: 16px;
}

.why-us-reach-text p {
    margin: 4px 0;
    color: #fff;
}

.why-us-reach-text h3 {
    color: #FDBF03;
    font-family: 'Roboto-Bold';
    margin-bottom: 24px;
}

.why-us-left {
    height: 100%;
    position: relative;
    padding: 40px;
    overflow: hidden;
}

.why-us-left::after,
.why-us-left::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* background: linear-gradient(146deg, #121212 4.32%, rgba(18, 18, 18, 0.92) 45.35%, rgba(18, 18, 18, 0.00) 100%); */
    /* background: linear-gradient(19deg, #121212 -8.68%, rgba(18, 18, 18, 0.7) 9.35%, rgba(18, 18, 18, 0.00) 100%); */
}

.why-us-left::before {
    background: radial-gradient(212.65% 139.2% at 100% 110.83%, #FDBF03 0%, rgba(18, 18, 18, 0.21) 82.75%, #121212 100%);
     /* background: linear-gradient(146deg, #121212 4.32%, rgba(18, 18, 18, 0.92) 45.35%, rgba(18, 18, 18, 0.00) 100%); */
}

.why-us-left-wrap {
    position: relative;
    z-index: 1;
}

.why-us-desc {
    /* margin: 91px 0; */
    margin: 105px 0;
}

.why-us-desc p {
    margin-bottom: 0;
    color: #fff;
    font-family: 'Roboto-Medium';
}
.why-us-reach-text p a{
    text-decoration: underline;
    margin-left: 8px;
}
.why-us-right {
    padding: 40px 54px;
    height: 100%;
}
.why-us-right h3{
    color: #121212;
}
.each-why-us-list-text h4{
    color: #121212;
    font-family: 'Roboto-Regular';
}
.why-us-list {
    margin: 45px 0 34px;
}

.each-why-us-list {
    display: flex;
    column-gap: 24px;
    padding: 32px 0;
    border-bottom: 2px dashed rgba(18, 18, 18, 0.40);
}

.each-why-us-list p {
    margin: 9px 0 0;
    color: #fff;
    font-family: 'Roboto-Regular';
    color: #121212;
}

.each-why-us-list:first-child {
    padding-top: 0;
}

.each-why-us-list:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.each-why-us-list-img {
    min-width: 75px;
    height: 75px;
    background-color: #FDBF03;
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    /* box-shadow: 0px 4px 50px -11px #FDBF03; */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-marquee-block {
    position: relative;
    margin: 0 -40px;
}

.usp-marquee-wrap {
    display: flex;
    width: max-content;
    gap: 16px;
    margin-bottom: 16px;
}

.usp-marquee-wrap:last-child {
    margin-bottom: 0;
}

.usp-marquee-wrap ul {
    display: flex;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.usp-marquee-wrap li {
    white-space: nowrap;
    line-height: normal;
    color: #fff;
    font-family: 'Roboto-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 10px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.why-us-right .common-btn{
    color: #121212;
}
.usp-marquee-wrap li strong {
    font-family: 'InterTight-Black';
    color: #FDBF03;
    font-weight: normal;
}

.usp-marquee-block::after,
.usp-marquee-block::before {
    content: "";
    height: 100%;
    width: 31%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: linear-gradient(90deg, rgba(18, 18, 18, 0.00) 56.66%, #121212 100%); */
    pointer-events: none;
    background: linear-gradient(207deg, rgba(18, 18, 18, 0.00) 8.66%, #121212 131%);
}

.usp-marquee-block::before {
    background: linear-gradient(90deg, rgba(204, 153, 0, 0.00) 68.35%, #C90 100%);
    left: auto;
    right: 0;
}

.why-us-line {
    top: -22%;
}

/******review-sec*****/
.review-sec {
    padding: 60px 0;
    background-color: #121212;
}

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

/***footer-area****/
.footer-area {
    background-color: #121212;
    border-top: 2px dashed rgba(255, 255, 255, 0.40);
    padding: 60px 0 47px;
}

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

.footer-logo img {
    width: 163px;
}

.footer-privacy {
    margin: 20px 0 76px;
}
.footer-area .sec-line img{
    height: 100%;
}
.footer-privacy p {
    color: #fff;
    margin-bottom: 0;
}

.footer-social ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 16px;
}

.footer-social li a {
    height: 44px;
    width: 44px;
    background-color: rgba(255, 255, 255, 0.20);
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.footer-social li a img {
    width: 25px;
    height: 25px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.footer-social li a:hover {
    background-color: #FDBF03;
    border-color: #FDBF03;
}

.footer-social li a:hover img {
    filter: brightness(0);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    column-gap: 10px;
    row-gap: 20px;
}
.opening-info table{
    width: 100%;
}
.opening-info table tr td:first-child{
    width: 96px;
}
.each-footer-info h6 {
    font-family: 'Roboto-Bold';
    margin-bottom: 8px;
}

.each-footer-info p {
    margin-bottom: 0;
    line-height: 28px;
}

.each-footer-info p a {
    color: rgba(255, 255, 255, 0.8);
}

.each-footer-info p a:hover {
    color: #FDBF03;
}

.footer-info-group {
    display: flex;
    gap: 35px;
    justify-content: space-between;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav>ul>li {
    padding-bottom: 4px;
    display: table;
}

.footer-nav>ul>li>a {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Roboto-Regular';
}

.footer-nav>ul>li>a:hover {
    color: #FDBF03;
}

.footer-review-merge {
    position: relative;
}

.footer-review-merge .sec-line {
    mix-blend-mode: soft-light;
    opacity: 0.3;
    height: 100%;
}

/* ============================================== diensten-list ============================================== */
/****inner-banner-sec****/
.inner-banner-sec {
    position: relative;
}

.inner-banner-sec::before {
    content: "";
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 0%, #121212 100%);
    z-index: 2;
}

.each-inner-banner {
    height: 600px;
}

.each-inner-banner img {
    height: 100%;
    object-fit: cover;
}

.inner-banner-content {
    position: absolute;
    left: 0;
    top: 71%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
}

/****diensten-list-sec****/
.diensten-list-sec {
    position: relative;
    padding: 120px 0 120px;
    /* overflow: hidden; */
}

.diensten-list-sec .container {
    z-index: 2;
    position: relative;
}

.diensten-list-top-line {
    top: -10%;
    z-index: 2;
}

.diensten-list-btm-line {
    left: 0;
    right: auto;
    bottom: 0;
    top: auto;
}

.each-list {
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.each-list-img {
    height: 519px;
    position: relative;
}

.each-list-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.each-list-img::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.60) 0%, rgba(18, 18, 18, 0.60) 100%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.each-list:hover .each-list-img::after {
    opacity: 1;
}

.each-list-txt h3 {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    line-height: 40px;
}

.diensten-list-sec .col-lg-6 {
    padding-left: 12px;
    padding-right: 12px;
}

.diensten-list-sec .row {
    margin-left: -12px;
    margin-right: -12px;
    row-gap: 22px;
}

.each-list-txt {
    width: 100%;
    position: absolute;
    bottom: -29%;
    left: 0;
    padding: 40px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 1;
}

.each-list-txt p {
    color: rgba(255, 255, 255, 0.80);
    margin: 16px 0 28px;
    width: 100%;
    max-width: 469px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3lh;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.each-list-txt .txt-btn {
    color: #FDBF03;
}

.each-list:hover .each-list-txt {
    bottom: 21%;
}

.each-list:hover .each-list-txt p {
    opacity: 1;
}

.each-list:hover .each-list-txt {
    bottom: 0%;
}

.each-list:hover .each-list-text p,
.each-list:hover .each-list-txt .txt-btn {
    opacity: 1;
}

.each-list:hover .each-list-txt .txt-btn {
    color: #FDBF03;
}

.each-list:hover .each-list-txt .txt-btn::after {
    filter: brightness(0) saturate(100%) invert(86%) sepia(31%) saturate(5456%) hue-rotate(359deg) brightness(103%) contrast(99%);
}

.each-list-txt:hover .txt-btn:hover {
    color: #fff;
}

.each-list-txt:hover .txt-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(86%) sepia(31%) saturate(5456%) hue-rotate(359deg) brightness(103%) contrast(99%);
}

/* ============================================== vacature-list ============================================== */
/****vacature-list-sec***/
.vacature-list-sec .col-lg-6:last-child {
    width: 100%;
}

/* ============================================== diensten-dtl ============================================== */
/****diensten-dtl-top****/
.diensten-dtl-top {
    padding: 210px 0 140px;
    padding-top: 0 ;
}
.bk-btn-sec{
    padding-top: 210px;
    /* text-align: center; */
    /* margin-bottom: -60px; */
    margin-bottom: -85px;
}
.diensten-dtl-top .container {
    position: relative;
    z-index: 1;
}

.diensten-dtl-top .sec-line {
    width: 25%;
}

.diensten-dtl-top-img img {
    border-radius: 20px;
    overflow: hidden;
}

.diensten-dtl-top .col-lg-7 {
    width: 57%;
}

.diensten-dtl-top .col-lg-5 {
    width: 43%;
}

.diensten-dtl-top-info {
    padding-left: 25px;
    padding-top: 30px;
}

.diensten-dtl-top-info h1 {
    margin-bottom: 25px;
    color: #121212;
}

.diensten-dtl-top-info h6 {
    font-family: 'InterTight-Bold';
    color: rgba(255, 255, 255, 0.80);
    line-height: 24px;
    margin-bottom: 20px;
    margin-top: 55px;
}

.diensten-dtl-top-info h4 {
    font-family: 'Roboto-Bold';
    color: rgba(18, 18, 18, 0.80);
    margin-bottom: 20px;
}
.diensten-dtl-top-info p{
    color: rgba(18, 18, 18, 0.80);
}

/****diensten-dtl-mid****/
.diensten-dtl-mid {
    padding-bottom: 120px;
}

.diensten-dtl-mid table {
    width: 100%;
}

.diensten-dtl-mid tr {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.diensten-dtl-mid td {
    width: 32%;
    /* padding: 0 20px 65px; */
    padding: 0 32px 65px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    /* box-shadow: inset -10px 10px 15px -3px rgba(0, 0, 0, 0.2); */
    border-radius: 20px;
    border: 1px solid rgba(18, 18, 18, 0.20);
    background: #F8F8F7;
}

.diensten-dtl-mid td sup {
    max-width: 83px;
    margin: -37px auto 0;
    height: 83px;
    background-color: #FDBF03;
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    /* box-shadow: 0px 4px 50px -15px #FDBF03; */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.diensten-dtl-mid td sup img {
    width: 43px;
    height: 53px;
}

.diensten-dtl-mid td h3 {
    text-align: center;
    margin: 38px 0 25px;
    font-family: 'Roboto-Bold';
    color: #121212;
}

.diensten-dtl-mid td p {
    text-align: center;
    color: rgba(18, 18, 18, 0.80);
}

.diensten-dtl-mid td:hover {
    /* box-shadow: 0px 4px 50px -30px #FDBF03; */
    border-color: #FDBF03;
}

/****form-sec****/
.form-sec {
    background-color: #121212;
    padding: 81px 0;
}

.form-title {
    text-align: center;
    margin-bottom: 50px;
}

.form-title h2 {
    font-family: 'InterTight-Regular';
    font-size: 4.8rem;
    line-height: 56px;
    margin-bottom: 15px;
}

.form-title p {
    max-width: 679px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.each-form-left {
    border-radius: 20px;
    overflow: hidden;
    padding: 23px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    cursor: pointer;
    box-shadow: inset -10px 10px 15px -3px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.00);
}

.each-form-contact ul {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.each-form-contact li {
    list-style-type: none;
    color: #F2F0EF;
    font-size: 2.4rem;
    font-family: 'Roboto-Bold';
}

.each-form-contact li img {
    width: 24px;
    height: 18px;
}

.each-form-contact li:first-child {
    border-radius: 4px;
    border: 1px solid rgba(242, 240, 239, 0.20);
    background-color: rgba(242, 240, 239, 0.20);
    overflow: hidden;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.each-form-arrow {
    width: 58px;
    height: 55px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.each-form-left-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.each-form-left:hover {
    box-shadow: 0px 4px 50px -30px #FDBF03;
}

.each-form-left:hover .each-form-arrow {
    background-color: #FDBF03;
    border-color: #FDBF03;
}

.each-form-contact h6 {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    font-family: 'InterTight-Regular';
    color: #FFF;
    line-height: 24px;
}

.each-form-left:hover h6 {
    /* color: #FDBF03; */
}

.form-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-wrap {
    border-radius: 20px;
    overflow: hidden;
    padding: 35px 25px;
    border: 1px solid rgba(242, 240, 239, 0.3);
    /* backdrop-filter: blur(2px); */
    height: 100%;
    box-shadow: inset 2px 2px 24px -11px rgba(242, 240, 239, 0.2);
}

.form-right {
    height: 100%;
}

.form-right .form-group {
    margin-bottom: 24px;
}

.form-right .form-style {
    resize: none;
    /* border: 1px solid rgba(242, 240, 239, 0.20);
    border-radius: 5px; */
    font-family: 'Roboto-Regular';
    color: #fff;
    font-size: 1.6rem;
    padding: 23px 23px;
    letter-spacing: 0.32px;
    /* background-color: rgba(2, 43, 54, 0.20); */

    border-radius: 10px;
    border: 1px solid rgba(242, 240, 239, 0.20);
    background: rgba(18, 18, 18, 0.20);
}

.form-right .form-style:placeholder {
    color: rgba(242, 240, 239, 0.70);
}

.form-right .form-style:-ms-input-placeholder {
    color: rgba(242, 240, 239, 0.70);
}

.form-right .form-style::placeholder {
    color: rgba(242, 240, 239, 0.70);
}

.form-right .form-style.foto_upload,
.form-right .form-style.photo_upload {
    color: rgba(242, 240, 239, 0.70);
}

.form-right .form-style:focus {
    box-shadow: none;
    border: 1px solid #FDBF03;
    color: #F2F0EF;
    background-color: rgba(18, 18, 18, 0.20);
}

.form-right .form-style:focus::placeholder {
    color: #fff;
}

.form-right .form-group-textarea:focus-within {
    border-color: #FDBF03;
}

.form-right textarea.form-style {
    height: 196px;
}

.form-wrap .common-btn {
    min-width: 100%;
    text-align: left;
    color: #121212;
}

/****dtl-slider-sec****/
.dtl-slider-sec {
    position: relative;
    padding: 120px 0;
}

.dtl-slider-sec .sec-line {
    left: 0;
    right: auto;
    bottom: 0;
    top: auto;
    z-index: -1;
}

.dtl-slider .each-list-img {
    height: 454px;
}

.dtl-slider-title {
    margin-bottom: 80px;
}
.dtl-slider-title h2{
    color: #121212;
}
.dtl-slider-title h4 {
    color: #FDBF03;
    margin-bottom: 17px;
    font-family: 'InterTight-Bold';
}

.dtl-slider .swiper-button-next {
    right: -1.5%;
}

.dtl-slider .swiper-button-prev {
    left: -1.5%;
}

/* ============================================== vacature-dtl ============================================== */
/****vacature-dtl-mid****/
.vacature-dtl-mid td {
    width: 49%;
}

.vacature-dtl-mid td h3 {
    text-align: left;
}
.vacature-dtl-mid td li{
    color: rgba(18, 18, 18, 0.80);
    padding-bottom: 12px;
}
.vacature-dtl-mid td ul{
    padding-left: 30px;
}

/* ============================================== contact ============================================== */
/****map-sec****/
.map {
    height: 600px;
}

/* ============================================== over-ons ============================================== */
/****over-ons-top-block****/
.over-ons-top-block {
    padding: 145px 0 45px;
    position: relative;
}

.over-ons-top-block .sec-line {
    top: -10%;
    z-index: -1;
}

.over-ons-top-block .row {
    align-items: flex-start !important;
}

.over-ons-left-mobile-img {
    display: none;
}

.over-ons-left-img img,
.over-ons-right-img img {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}

.over-ons-right {
    padding-left: 18px;
}

.over-ons-left-img {
    margin-top: 99px;
    height: 306px;
}

.over-ons-right-img {
    margin-bottom: 50px;
    height: 306px;
}

.over-ons-right-content h6 {
    color: #121212;
    font-family: 'Roboto-Bold';
    line-height: 24px;
    margin-bottom: 16px;
}
.over-ons-right-content P{
    color: rgba(18, 18, 18, 0.80);
}

.over-ons-left-content h2 {
    color: #121212;
    margin-bottom: 25px;
}
.over-ons-left-content p{
    color: rgba(18, 18, 18, 0.80);
}

/****over-ons-why-us-sec****/
.over-ons-why-us-sec .sec-line {
    /* display: none; */
    z-index: 1;
    opacity: 0.2;
    mix-blend-mode: soft-light;
}

.over-ons-why-us-sec h4 {
    line-height: 32px;
    font-family: 'InterTight-Medium';
    max-width: 600px;
    width: 100%;
}

.over-ons-why-us-sec {
    background-color: #121212;
    padding: 98px 0;
}

/****over-ons-team-sec****/
.over-ons-team-sec {
    position: relative;
    padding: 120px 0 130px;
    overflow: hidden;
}

.over-ons-team-top {
    margin-bottom: 80px;
}

.over-ons-team-title h4 {
    color: #FDBF03;
    font-family: 'InterTight-Bold';
    margin-bottom: 18px;
}
.over-ons-team-title h2{
    color: #121212;
}
.over-ons-team-info {
    text-align: center;
    /* margin-top: 15px; */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.over-ons-team-info h3 {
    font-family: 'InterTight-Regular';
    line-height: 40px;
    color: #121212;
}
.over-ons-team-slider .swiper-slide-active .over-ons-team-info h3{
    color: #fff;
}
.over-ons-team-slider .swiper-slide-active .over-ons-team-info h6{
    color: #fff;
}

.over-ons-team-info h6 {
    font-family: 'LamaSans-Light';
     color: #121212;
}

.over-ons-team-img {
    height: 345px;
    position: relative;
}

.over-ons-team-slider {
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
}

.over-ons-team-img img {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.over-ons-team-img::after {
    background: linear-gradient(180deg, rgba(3, 21, 26, 0.00) 58.12%, rgba(3, 21, 26, 0.69) 100%);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.each-over-ons-team {
    height: 415px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.over-ons-team-slider .swiper-slide-active .over-ons-team-img::after {
    opacity: 1;
}

.over-ons-team-slider .swiper-slide-active .over-ons-team-img {
    height: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: 2px solid #FDBF03;
    border-radius: 20px;
    overflow: hidden;
}

.over-ons-team-slider .swiper-slide-active .each-over-ons-team {
    height: 431px;
}

.over-ons-team-slider .swiper-slide-active .over-ons-team-info {
    bottom: 16px;
}

.over-ons-team-slider .swiper-slide-active .over-ons-team-img img {
    height: 100%;
    object-fit: cover;
}

.over-ons-team-arrow .swiper-button-prev {
    left: auto;
    right: 100px;
}

/* ============================================== aanbod-dtl ============================================== */
/****aanbod-top-info****/
.aanbod-top-info {
    padding: 196px 0 56px;
}

.aanbod-top-info-left h3 {
    font-size: 4rem;
    line-height: 40px;
    margin-bottom: 15px;
    color: #121212;
    font-family: 'Roboto-Bold';
}

.aanbod-top-info-right strong {
    display: flex;
    font-weight: normal;
    gap: 13px;
    align-items: center;
    justify-content: end;
    margin-bottom: 15px;
}

.aanbod-top-info-right em {
    display: flex;
    font-style: normal;
    gap: 10px;
    align-items: center;
    justify-content: end;
}

.aanbod-top-info-right strong h6,
.aanbod-top-info-right em h6 {
    color: rgba(18, 18, 18, 0.8);
    font-family: 'Roboto-Regular';
    line-height: 24px;
}

.aanbod-top-info-right strong h4,
.aanbod-top-info-right em h4 {
    font-family: 'InterTight-Bold';
}
.aanbod-top-info-right em h4 {
    color: #FDBF03;
}
.aanbod-top-info-right strong h4 {
    color: #FDBF03;
}

.aanbod-top-info-left h6 {
    font-family: 'Roboto-Regular';
    line-height: 24px;
    color: rgba(18, 18, 18, 0.8);
}

/****aanbod_dtl_banner****/
.aanbod_dtl_banner .sec-line {
    top: auto;
    bottom: -50%;
}

.aanbod-banner-row {
    gap: 15px;
}

.each-big-car img,
.each-small-car img {
    border-radius: 20px;
    overflow: hidden;
}
.each-big-car{
    position: relative;
}
.each-big-car img.big_image1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 120px;
    height: 120px;
    object-fit: unset;
}
.aanbod_dtl_banner .col-lg-3 {
    width: 20.8%;
}

.aanbod_dtl_banner .col-lg-9 {
    width: 78%;
}

.aanbod-dtl-banner-right {
    height: 100%;
}

.big-car-slider .swiper-button-prev {
    left: -3%;
}

.big-car-slider .swiper-button-next {
    right: -2.8%;
}

.big-car-slider,
.aanbod-big-car {
    height: 100%;
}

.each-big-car,
.each-small-car {
    height: 100%;
    cursor: pointer;
}

.each-big-car img {
    height: 100%;
    object-fit: cover;
}

.smal-car-sec {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    height: 100%;
    position: relative;
}

.smal-car-sec::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 23.5%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) -156.25%, #121212 77.32%);
}

.each-small-car-last {
    position: relative;
}

.each-small-car-last-info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.each-small-car-last-info h4 {
    font-family: 'Roboto-Bold';
}

.each-small-car-last-info h6 {
    line-height: 24px;
    font-family: 'Roboto-Regular';
}

/****aanbod-dtl-content****/
.aanbod-dtl-content {
    padding-top: 50px;
}

.each-aanbod-dtl-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 23%;
    padding: 27px 15px;
    min-height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(18, 18, 18, 0.10);
    background: #F8F8F7;
}

.aanbod-dtl-content-wrap .each-aanbod-dtl-content:nth-child(1):after {
    content: '';
    position: absolute;
    background-image: url(../images/aanbod-dtl-content-frame1.svg);
    height: 80px;
    width: 80px;
    background-size: 80px;
    bottom: 0;
    right: 0;
}

.aanbod-dtl-content-wrap .each-aanbod-dtl-content:nth-child(2):after {
    content: '';
    position: absolute;
    background-image: url(../images/aanbod-dtl-content-frame2.svg);
    height: 80px;
    width: 80px;
    background-size: 80px;
    bottom: 0;
    right: 0;
}

.aanbod-dtl-content-wrap .each-aanbod-dtl-content:nth-child(3):after {
    content: '';
    position: absolute;
    background-image: url(../images/aanbod-dtl-content-frame3.svg);
    height: 80px;
    width: 80px;
    background-size: 80px;
    bottom: 0;
    right: 0;
}

.aanbod-dtl-content-wrap .each-aanbod-dtl-content:nth-child(4):after {
    content: '';
    position: absolute;
    background-image: url(../images/aanbod-dtl-content-frame4.svg);
    height: 80px;
    width: 80px;
    background-size: 80px;
    bottom: 0;
    right: 0;
}

.each-aanbod-dtl-content-img img {
    height: 43px;
    width: 50px;
}

.each-aanbod-dtl-content-part h6 {
    font-family: 'Roboto-Regular';
    color: rgba(18, 18, 18, 0.53);
    margin-bottom: 8px;
}

.each-aanbod-dtl-content-part {
    z-index: 1;
}

.each-aanbod-dtl-content-part h4 {
    font-family: 'Roboto-Medium';
    line-height: normal;
    font-size: 2rem;
    color: rgba(18, 18, 18, 1);
}

.aanbod-dtl-content-wrap {
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 30px;
}

.aanbod-dtl-content-btn .common-btn {
    border: 0;
}
.aanbod-dtl-content-btn .wp-btn{
    font-size: 1.4rem;
    padding: 12px 52px 12px 12px;
}
.aanbod-dtl-content-btn .wp-btn:hover {
    padding-left: 52px;
    padding-right: 12px;
}
.aanbod-dtl-content-btn .wp-btn::after{
    background-image: url(../images/wp-btn.svg);
}
.aanbod-dtl-content-btn .wp-btn::before{
    background-image: url(../images/wp-btn.svg);
}
.aanbod-dtl-content-btn .grey-btn {
    background-color: rgba(18, 18, 18, 1);
    color: #fff;
}

.aanbod-dtl-content-block .row.align-items-center {
    align-items: start !important;
}

.aanbod-dtl-content-block .col-lg-8 {
    width: 88%;
}

.aanbod-dtl-content-block .col-lg-4 {
    width: 12%;
}

.aanbod-dtl-content-btn .grey-btn {
    margin-top: 15px;
}

/****dtl-tab-sec****/
.dtl-tab-sec {
    padding: 120px 0;
    overflow: hidden;
}

.dtl-tab-sec .sec-line {
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
}

/* .dtl-tab-sec .container {
    position: relative;
    z-index: 1;
} */
.dtl-tab-sec .tab-btn .nav-tabs {
    column-gap: 15px;
    margin-bottom: 56px;
    border: 0;
    justify-content: center;
}

.tab-btn .tabs {
    flex-wrap: wrap;
    display: flex;
    justify-content: left;
    column-gap: 15px;
    row-gap: 15px;
    padding: 0;
    overflow: hidden;
    margin-bottom: 56px;
    position: relative;
}

.tab-btn .tabs li.active {
    background-color: transparent;
    opacity: 1;
    position: relative;
}

.tab-btn ul.tabs li {
    color: #fff;
    font-family: 'Roboto-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    padding: 12px 56px 12px 24px;
    background-color: rgba(18, 18, 18, 1);
    overflow: hidden;
    align-items: center;
    border-radius: 8px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    word-break: break-word;
    cursor: pointer;
    width: 17%;
    text-align: center;
}

.tab-btn ul.tabs li::after,
.tab-btn ul.tabs li::before {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: #fff;
    border-radius: 6px;
    left: -50px;
    top: 4px;
    /* transition: all 0.5s;
    -webkit-transition: all 0.5s; */
    background-image: url(../images/dtl-btn-arrow.svg);
    background-size: 7px;
    background-position: center center;
    background-repeat: no-repeat;
}
.tab-btn ul.tabs li::before{
    display: none;
}
.tab-btn ul.tabs li::after {
    right: 4px;
    left: auto;
}

.tab-btn .tabs li.active,
.tab-btn .tabs li:hover {
    color: #03151A;
    background: #FDBF03;
}

.tab-btn .tabs li.active::after,
.tab-btn .tabs li:hover::after {
    background-image: url(../images/dtl-btn-arrow-hover.svg);
    background-size: 16px;
}

/****tab-content****/
.tab_content {
    display: none;
}

.tab_drawer_heading {
    display: none;
}

.kenmerken-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    column-gap: 15px;
    row-gap: 15px;
}

.kenmerken-tab li {
    width: 32.3%;
    padding: 18px 34px 18px 21px;
    position: relative;
    font-family: 'Roboto-Regular';
    color: rgba(18, 18, 18, 0.7);
    line-height: 20px;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    border-radius: 8px;
    border: 1px solid #F8F8F7;
    background-color: #F8F8F7;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.kenmerken-tab li:hover{
    background-color: #FDBF03;
    border-color: #FDBF03;
}
.kenmerken-tab li::after {
    display: none;
}

.kenmerken-tab li:nth-child(1) {
    width: 47%;
}

.kenmerken-tab li:nth-child(2) {
    width: 25%;
}

.kenmerken-tab li:nth-child(3) {
    width: 25%;
}

.kenmerken-tab li:nth-child(4) {
    width: 25%;
}

.kenmerken-tab li:nth-child(5) {
    width: 47%;
}

.kenmerken-tab li:nth-child(6) {
    width: 25%;
}

.kenmerken-tab li:nth-child(7) {
    width: 25%;
}

.kenmerken-tab li:nth-child(8) {
    width: 25%;
}

.kenmerken-tab li:nth-child(9) {
    width: 47%;
}

.kenmerken-tab li strong {
    display: block;
    color: rgba(18, 18, 18, 1);
    text-align: right;
    font-weight: normal;
}

.kenmerken-tab {
    overflow: hidden;
}

.bullet-panel h4 {
    border-bottom: 1.5px solid rgba(18, 18, 18, 1);
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 2.4rem;
    line-height: 32px;
    color: rgba(18, 18, 18, 1);
}

.dtl-tab-sec .tab-content .tab-pane .tab_hedaing {
    padding-bottom: 20px;
}

.bullet-panel {
    margin-bottom: 20px;
}

.dtl-tab-sec .bullet-panel ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.dtl-tab-sec .bullet-panel ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: rgba(18, 18, 18, 1);
}

.dtl-tab-sec .bullet-panel li:after {
    background-size: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: '';
    width: 8px;
    height: 8px;
    /* background-image: url(../images/bullet.svg); */
    background-repeat: no-repeat;
    background-color: rgba(18, 18, 18, 1);
    border-radius: 100px;
}
.related-car-title h2{
    color: rgba(18, 18, 18, 1);
}
.dtl-tab-sec .tab-content p {
    color: rgba(18, 18, 18, 1);
}

.left-bg-block {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 1.6rem;
    line-height: 24px;
}

.block-dtls {
    width: calc(100% - 140px);
    border: 1px solid #fff;
    border-left: 0;
    padding: 20px 15px 5px;
    min-height: 200px;
}

.left-bg-block h6 {
    line-height: 20px;
    font-size: 1.6rem;
    text-transform: none;
    color: #03151A;
}

.each-onderhoud-block h4 {
    text-transform: none;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 20px;
    color: #fff;
}

.each-onderhoud-block h5 {
    margin: 8px 0 25px;
    font-size: 1.6rem;
    text-transform: none;
    color: rgba(255, 255, 255, 0.8);
}

.each-onderhoud-block {
    display: flex;
    margin-bottom: 20px;
}

.tab-btm-btn {
    color: #03151A;
    font-family: 'InterTight-Medium';
    font-size: 1.6rem;
    line-height: 24px;
    display: inline-block;
    padding: 12px 56px 12px 24px;
    background-color: #FDBF03;
    overflow: hidden;
    align-items: center;
    border-radius: 8px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    cursor: pointer;
    margin-top: 40px;
}

.tab-btm-btn::before,
.tab-btm-btn::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: #fff;
    border-radius: 6px;
    left: -50px;
    top: 4px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-image: url(../images/btn-arrow.svg);
    background-size: 16px;
    background-position: center center;
    background-repeat: no-repeat;
}

.tab-btm-btn::after {
    right: 4px;
    left: auto;
}

.tab-btm-btn:hover {
    background-color: rgba(18, 18, 18, 1);
    color: #fff;
}

/****show-popup****/
.tab-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    display: flex;
}

.tab-popup-content-wrap {
    overflow-x: hidden;
    overflow-y: scroll;
}

.popup-opacity {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 21, 26, 0.60);
    backdrop-filter: blur(12px);
    top: 0;
    left: 0;
    z-index: 100;
}

.tab-popup-area {
    border-radius: 8px;
    background: rgba(18, 18, 18, 1);
    position: relative;
    z-index: 101;
    margin: auto auto;
    padding: 50px;
    width: 100%;
    height: 75vh;
    border: 1px solid #FDBF03;
    overflow: hidden;
    box-shadow: 0px 0px 25px 0px rgba(191, 255, 71, 0.2);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(191, 255, 71, 0.2);
    max-width: 93%;
}

.popup-cross {
    background: #03151A;
    width: 45px;
    height: 45px;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid #fff;
}

.tab-popup-content {
    overflow: scroll;
    overflow-x: hidden;
    padding-right: 20px;
    height: calc(100% - 116px) !important;
}

.tab-popup-content ul {
    margin-bottom: 33px;
    padding: 0;
}

.tab-popup-content ul:last-child {
    margin-bottom: 0;
}

.popup-cross img {
    width: 38px;
}

.tab-popup-area h3 {
    line-height: normal;
    margin-bottom: 20px;
    font-size: 2.8rem;
    color: #fff;
}

.tab-popup-area p {
    color: rgba(255, 255, 255, 0.50);
    line-height: normal;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.tab-popup-content h4 {
    color: #fff;
    line-height: 56px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.tab-popup-content li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    line-height: 30px;
    color: #fff;
    padding: 6px 0;
    flex-wrap: wrap;
    padding-left: 0;
}

.tab-popup-content li::after {
    display: none;
}

.tab-popup-content li strong {
    width: 50%;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.70);
}

.show-popup {
    display: none;
}

/****related-car-sec****/
.related-car-sec {
    position: relative;
    padding: 122px 0;
}

.related-car-title h4 {
    font-family: 'InterTight-Bold';
    color: #FDBF03;
    margin-bottom: 15px;
}

.related-car-title {
    text-align: center;
    margin-bottom: 55px;
}

.each-car-product {
    padding: 14px;
    border-radius: 20px;
    background-color: #F8F8F7;
}

.aanbod-product-grid .product-slider-text::after {
    display: none;
}

.aanbod-product-grid .product-slider-text {
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    height: auto;
    border: 0;
    margin-top: 20px;
}

.aanbod-product-grid .each-product-model h3 {
    font-size: 2.4rem;
    line-height: 32px;
}

.aanbod-product-grid .product-spec-img img {
    height: 35px;
    width: 35px;
}

.aanbod-product-grid .each-product-spec h4 {
    font-size: 1.6rem;
}

.aanbod-product-grid .product-price-mob h4 strong,
.aanbod-product-grid .product-price-mob h4 {
    font-size: 1.6rem;
}

.aanbod-product-grid .product-price-mob h4 {
    color: #121212;
}

.aanbod-product-grid .product-price-mob h4 strong {
    color: rgba(18, 18, 18, 0.80);
}

/* .aanbod-product-grid .each-car-product:hover .product-price-mob h4 {
    color: rgba(3, 21, 26, 0.8);
} */

.aanbod-product-grid .each-car-product:hover .product-price-mob h4 strong {
    color: rgba(3, 21, 26, 0.80);
}

.aanbod-product-grid .product-slider-img {
    border-radius: 10px;
}

.aanbod-product-grid .product-price-mob::before {
    display: none;
}

.aanbod-product-grid .product-price-mob.common-btn:hover::after {
    right: 4px;
    background-color: #F8F8F7;;
    background-image: url(../images/btn-arrow.svg);
    
}
.aanbod-product-grid .product-price-mob.common-btn::after{
    background-color: rgba(18, 18, 18, 1);
    background-image: url(../images/aanbod-btn-arrow-white.svg);
}

.aanbod-product-grid .each-car-product:hover .product-price-mob.common-btn {
    background-color: #FDBF03;
    padding-left: 24px;
    border-color: #FDBF03;
}

.aanbod-product-grid .col-lg-7,
.aanbod-product-grid .col-lg-5 {
    width: 100%;
}

.aanbod-product-grid .product-price {
    display: none;
}

.aanbod-product-grid .swiper-button-next {
    right: 0;
}

.aanbod-product-grid .swiper-button-prev {
    left: 0;
}

.aanbod-product-grid .product-spec-mark {
    display: none;
}

.aanbod-product-grid .product-spec .row {
    row-gap: 0;
    margin: 0;
}

.aanbod-product-grid .product-spec .col-6 {
    padding: 0;
}

.aanbod-product-grid .each-product-spec {
    border-radius: 0;
    background-color: transparent;
    padding: 12px;
    height: 100%;
    border: 0;
    border-right: 1px dashed rgba(18, 18, 18, 0.20);
    border-bottom: 1px dashed rgba(18, 18, 18, 0.20);
    column-gap: 6px;
}

.aanbod-product-grid .product-spec .col-6:nth-child(even) .each-product-spec {
    border-right: 0;
}

.aanbod-product-grid .product-spec .col-6:last-child .each-product-spec,
.aanbod-product-grid .product-spec .col-6:nth-last-child(2) .each-product-spec {
    border-bottom: 0;
}

.aanbod-product-grid .product-slider-btm {
    display: none;
}

.aanbod-product-grid .product-price-mob {
    display: flex;
    /* background: #35555E; */
    border-radius: 8px;
    border: 1px solid rgba(18, 18, 18, 0.20);
    background: #FFF;
}

.aanbod-product-grid .each-product-btn {
    display: none;
}

.related-product-slider .swiper-button-next {
    right: -2%;
}

.related-product-slider .swiper-button-prev {
    left: -2%;
}

.aanbod-product-grid .each-product-model {
    margin-left: 12px;
}

/* ============================================== aanbod-grid ============================================== */
/****aanbod-heading-sec****/
.aanbod-heading-sec {
    padding: 137px 0 0;
}

.aanbod-heading-sec h1 {
    color: #fff;
}

.aanbod-heading-sec h6 {
    line-height: 24px;
    margin-top: 8px;
    color: #121212;
    font-family: 'Roboto-Regular';
}

.aanbod-heading-sec ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.aanbod-heading-sec li {
    font-family: 'InterTight-Bold';
    font-size: 2.4rem;
    color: #fff;
    cursor: pointer;
}

.aanbod-heading-sec li.view-active {
    color: #FDBF03;
}

.aanbod-heading-sec ul {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.aanbod-heading-sec li:first-child {
    position: relative;
    padding-right: 17px;
}

.aanbod-heading-sec li:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    background-color: #fff;
    height: 30px;
    width: 1px;
    transform: rotate(23deg);
}

/****aanbod-filter-sec****/
.aanbod-filter-sec {
    padding: 80px 0 56px;
}

.aanbod-filter-wrap {
    position: relative;
    z-index: 2;
    /* border-radius: 20px; */
    /* background-color: rgba(53, 85, 94, 0.2); */
    /* border-top: 1px solid #98B0B4; */
    /* border-bottom: 1px solid #98B0B4; */
    padding: 36px 50px;
    border-radius: 20px;
    border: 1px solid rgba(18, 18, 18, 0.20);
    background: #F8F8F7;
}

.filter-main-wrap {
    display: flex;
    align-items: start;
    gap: 10px;
}

.filter-main-wrap h4 {
    font-family: 'Roboto-Bold';
    width: 8%;
    margin-top: 10px;
    color: #121212;
}

.filter-main-row {
    width: 92%;
}

.filter-reset a {
    color: #121212;
    font-size: 1.4rem;
    font-family: 'InterTight-Medium';
}

.filter-reset img {
    width: 9px;
    margin-left: 5px;
    margin-bottom: 2px;
    filter: brightness(0) invert(1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.filter-reset a:hover {
    color: #FDBF03;
}
.filter-reset a img{
    filter: brightness(0);
}

.filter-reset a:hover img {
   filter: brightness(0) saturate(100%) invert(85%) sepia(36%) saturate(3374%) hue-rotate(353deg) brightness(97%) contrast(105%);
}

.select-style {
    position: relative;
    width: 100%;
    color: #121212;
    font-family: 'Roboto-Medium';
    font-size: 1.6rem;
    border: 1px solid #FFF;
    border-radius: 8px;
    padding: 12px 56px 12px 24px;
    appearance: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    display: inline-block;
    background-color: #FFF;
    /* transition: all 0.5s;
    -webkit-transition: all 0.5s; */
}

.select-style::before,
.select-style::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: rgba(248, 248, 247, 1);
    border-radius: 6px;
    left: -50px;
    top: 4px;
    /* transition: all 0.5s;
    -webkit-transition: all 0.5s; */
    background-image: url(../images/dtl-btn-arrow.svg);
    background-size: 7px;
    background-position: center center;
    background-repeat: no-repeat;
}

.select-style::after {
    right: 4px;
    left: auto;
}

.select-style:hover {
    background-color: #FDBF03;
    border-color: #FDBF03;
    color: #03151A;
}

.select-style:hover::after {
    background-image: url(../images/dtl-btn-arrow-hover.svg);
    background-size: 16px;
}

.select-style.show {
    border-radius: 5px 5px 0 0;
    background-color: #FDBF03;
    border-color: #FDBF03;
}
.select-style.show::after {
    background-image: url(../images/dtl-btn-arrow-hover.svg);
    background-size: 16px;
}

.filter-main {
    margin-bottom: 0px;
}

.filter-main option {
    font-family: 'InterTight-Medium';
    background-color: #03151A;
}

.filter-content {
    display: none;
    background-color: #FDBF03;
    padding: 10px 10px 15px;
    z-index: 2;
    border: 1px solid #FDBF03;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    margin-top: -5px !important;
    cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 4;
}

.filter-content::-webkit-scrollbar {
    background-color: #dbdbdb;
    width: 10px;
}

.filter-content::-webkit-scrollbar-thumb {
    background-color: #999999;
}

.filter-content.show-div {
    display: block;
}

.aanbod-filter-sec label {
    color: #121212;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-family: 'InterTight-Medium';
    font-size: 1.4rem;
    cursor: pointer;
}

.aanbod-filter-sec label:last-child {
    margin-bottom: 0;
}

.aanbod-filter-sec label span {
    float: right;
    color: #03151A;
    opacity: 0.65;
}

.aanbod-filter-sec .form-check-input {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
    box-shadow: none;
    border: 1px solid #03151A;
    background-color: transparent;
    border-radius: 3px;
}

.aanbod-filter-sec .form-check-input:checked {
    background-color: #03151A;
    border-color: #03151A;
    background-image: url(../images/check-tick.svg);
    background-size: 16px;
    background-position: center center;
    background-repeat: no-repeat;
}

.filter-main .col-xl-3 {
    width: 27%;
}

.filter-main .col-xl-9 {
    width: 73%;
}

.filter-sort {
    display: flex;
    align-items: center;
    justify-content: end;
}

.filter-sort {
    position: relative;
}

.filter-sort h6 {
    margin-right: 10px;
    color: #fff;
    font-family: 'InterTight-Bold';
    text-transform: none;
    letter-spacing: normal;
    font-size: 2.4rem;
    margin-top: -15px;
}

.sorteren_op-filter .select-style {
    /* background-color: #FDBF03; */
    color: #121212;
    font-family: 'InterTight-Medium';
}

.clear-filter-wrap {
    margin-left: 10%;
}

.auto-overview-tag {
    margin-right: 5px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(18, 18, 18, 1);
    border-radius: 8px;
    background-color: rgba(253, 191, 3, 0.5);
    font-family: 'InterTight-Medium';
    font-size: 1.4rem;
    border: 1px solid rgba(18, 18, 18, 0.5);
    flex-direction: row-reverse;
}

.cross-btn {
    width: 9px;
    margin-left: 0 !important;
    margin-right: 10px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.auto-overview-tag img {
    filter: invert(1);
}

.auto-overview-tag:hover {
    background-color: #FDBF03;
    border-color: #FDBF03;
    color: #03151A;
}

.hidden-filter .col-lg-3 {
    margin-bottom: 0px;
    width: 23%;
}

.hidden-filter .col-lg-3 h5 {
    display: none;
    font-family: 'InterTight-Medium';
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

.total_search_records {
    margin-top: 30px;
}

.mobile-show-filter {
    position: fixed;
    top: 98px;
    background-color: rgba(18, 18, 18, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    z-index: 5;
    margin-top: 0;
    padding: 15px 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.mobile-show-filter .common-btn {
    font-family: 'InterTight-Medium';
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 10px;
    background-color: #FDBF03;
    border: 1px solid #FDBF03;
    text-transform: capitalize;
    color: #03151A;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    padding: 12px;
}

.mobile-show-filter .common-btn::after,
.mobile-show-filter .common-btn::before,
.mobile-show-filter .common-btn::after {
    display: none;
}

.mobile-show-filter .common-btn:hover::before {
    left: 0;
}

.mobile-show-filter .common-btn:hover {
    background-color: rgba(253, 191, 3, 0.5);
    border-color: rgba(253, 191, 3, 0.5);
    color: #fff;
    padding-left: 12px;
    padding-right: 12px;
}

.filter-count {
    min-width: 20px;
    height: 20px;
    background-color: #03151A;
    border-radius: 100%;
    color: #fff;
    border: 1px solid #03151A;
    margin-left: 30px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: none;
}

.mobile-filter-close {
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: rgba(18, 18, 18, 1);
    border-bottom: 1px solid rgba(249, 248, 246, 0.3);
}

.mobile-filter-close span {
    max-width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 5px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-filter-close span img {
    width: 9px;
}

.auto-overview-filter-result .total_search_records {
    margin-top: 0;
    background-color: #FDBF03;
    border: 1px solid #FDBF03;
    color: #03151A;
    padding: 10px;
    border-radius: 0 10px 10px 0;
    text-transform: capitalize;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.auto-overview-filter-result .total_search_records h4 {
    font-size: 1.6rem;
    color: #fff;
}

.auto-overview-filter-result .total_search_records:hover {
    background-color: transparent;
    border-color: #FDBF03;
    color: #fff;
}

.cursor-pointer {
    cursor: pointer;
}

.filter-sort .each-filter {
    margin-bottom: 0;
    width: 200px;
}

.model-filter .form-check-input {
    display: none;
}

.sorteren_op-filter .form-check-input {
    display: none;
}

.show_selected_filter_cls {
    display: flex;
    flex-wrap: wrap;
    row-gap: 6px;
}

/****aanbod-range-filter****/
.aanbod-range-filter label {
    font-size: 1.6rem;
}

.aanbod-range-filter .ui-slider .ui-slider-handle {
    width: 25px;
    height: 25px;
    background-color: #FDBF03;
    border-radius: 100%;
    border: 0;
    top: -11px;
    cursor: grab;
}

.aanbod-range-filter .ui-slider {
    height: 5px;
    border-radius: 5px;
    background-color: rgba(253, 191, 3, 0.5);
    border-color: rgba(253, 191, 3, 0.5);
    max-width: calc(100% - 20px);
    margin: 22px auto 17px;
}

.aanbod-range-filter .ui-slider .ui-slider-range {
    background-color: #FDBF03;
}

.aanbod-range-filter .ui-widget.ui-widget-content {
    border: 0;
}

.aanbod-range-filter .slider-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aanbod-range-filter .slider-inputs span {
    color: rgba(18, 18, 18, 1);
    margin: 0 5px;
}

.aanbod-range-filter .slider-inputs input {
    border-radius: 10px;
    border: 1px solid rgba(18, 18, 18, 0.25);
    padding: 8px;
    background-color: transparent;
    width: 90px;
    color: rgba(18, 18, 18, 1);
    font-size: 1.6rem;
    line-height: normal;
}

.mob-filter-visible {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    margin: 0 auto;
    max-width: 510px;
    width: 100%;
}

.mob-filter-visible h6 {
    color: rgba(18, 18, 18, 1);
}

.mob-filter-visible strong {
    font-weight: normal;
    color: #FDBF03;
}

/****aanbod-product-block****/
.aanbod-product-block {
    position: relative;
    padding-bottom: 120px;
}

.aanbod-product-block .aanbod-product-grid {
    position: relative;
    z-index: 1;
}

.aanbod-product-block .col-xl-4 {
    padding-left: 9px;
    padding-right: 9px;
}

.aanbod-product-block .aanbod-product-grid {
    margin-left: -9px;
    margin-right: -9px;
    row-gap: 46px;
}

/* ============================================== aanbod-list ============================================== */
/****aanbod-list-heading****/
.aanbod-list-heading h1 {
    color: #FDBF03;
}

/****aanbod-product-block****/
.aanbod-product-block .aanbod-list-row .product-slider-text::after {
    display: none;
}

.aanbod-product-block .aanbod-list-row {
    row-gap: 47px;
}

.aanbod-product-block .aanbod-list-row .product-slider-text {
    background-color: #022B36;
}

.aanbod-product-block .aanbod-list-row .each-product-btn.common-btn {
    background-color: #35555E;
    color: #fff;
}

.aanbod-product-block .aanbod-list-row .product-slider-top:hover .each-product-btn.common-btn {
    background-color: #FDBF03;
    padding-left: 24px;
    color: #03151A;
}

.aanbod-product-block .aanbod-list-row .each-product-btn.common-btn:hover::after {
    right: 4px;
}

.aanbod-product-block .aanbod-list-row .each-product-btn.common-btn::before {
    display: none;
}


/* ============================================== bedankt ============================================== */
/****bedankt-banner****/
.bedankt-banner {
    position: relative;
}

.bedankt-banner::before {
    content: "";
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(3, 21, 26, 0.00) 0%, #03151A 100%);
    z-index: 2;
}

.each-bedankt-banner {
    height: 849px;
}

.each-bedankt-banner img {
    height: 100%;
    object-fit: cover;
}

.bedankt-banner-content {
    position: absolute;
    left: 0;
    top: 58%;
    transform: translateY(-50%);
    z-index: 2;
    width: 100%;
}

.bedankt-banner-content h1 {
    margin-bottom: 24px;
}

.bedankt-banner-content p {
    color: #fff;
    margin: 16px auto 45px;
    max-width: 480px;
    width: 100%;
    font-family: 'InterTight-Medium';
}

/* ============================================== popup ============================================== */
.modal-area .modal-dialog {
    max-width: 74%;
    margin: 10% auto 0;
}

.modal-area .modal {
    background: rgba(18, 18, 18, 0.70);
    backdrop-filter: blur(12px);
}

.modal-area .modal-content {
    border: 0;
    position: relative;
    border-radius: 20px;
    background: #F8F8F7;
    backdrop-filter: blur(12px);
}

.modal-content .col-lg-5 {
    width: 41%;
}

.modal-content .col-lg-7 {
    width: 59%;
}

.modal-area .popup-content p {
    color: rgba(18, 18, 18, 0.80);
}

.modal-area .popup-content h3 {
    font-size: 4rem;
    line-height: 65px;
    color: #121212;
    font-family: 'InterTight-SemiBold';
}

.pop-up-image {
    height: 100%;
}

.pop-up-image img {
    border-radius: 0 20px 20px 0;
    height: 100%;
    overflow: hidden;
}

.modal-area .popup-content ul {
    margin: 50px 0 20px;
    list-style-type: none;
    padding-left: 15px;
}

.modal-area .popup-content li {
    position: relative;
    color: rgba(18, 18, 18, 0.80);
    line-height: 24px;
    padding-left: 12px;
    font-family: 'Roboto-Regular';
    margin: 8px;
}

.modal-area .popup-content {
    padding: 48px;
    padding-right: 103px;
    position: relative;
}

.modal-area .popup-content p:last-child {
    margin-bottom: 0;
}

.modal-area .popup-content li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    background-size: 5px;
    height: 5px;
    width: 5px;
    background-color: rgba(18, 18, 18, 0.80);
    border-radius: 50px;
}

.modal-area .close-img {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    width: 48px;
    height: 48px;
    background-color: rgba(18, 18, 18, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 4px solid #FDBF03;
}

.modal-area .close-img img {
    width: 20px;
    filter: brightness(0) invert(1);
}

/* ============================================== verkocht ============================================== */
/****verkocht-top****/
.verkocht-top {
    padding: 228px 0 56px;
}

.verkocht-top h6 {
    line-height: 24px;
    margin-top: 10px;
    color: #121212;
}

/****verkocht-product-block****/
.verkocht-product-block {
    position: relative;
}

.verkocht-product-block .sec-line {
    bottom: auto;
    top: 0;
}

.verkocht-product-block .product-price-mob.common-btn {
    background-color: #35555E;
    color: #fff;
    padding-left: 24px;
    padding-right: 24px;
}

.verkocht-product-block .product-price-mob.common-btn::after,
.verkocht-product-block .product-price-mob.common-btn::before {
    display: none;
}

.verkocht-product-block .product-price-mob {
    justify-content: center;
}

.verkocht-product-block .product-price-mob.common-btn:hover {
    padding-left: 24px;
    padding-right: 24px;
}

.listview-top-content.privacy_section {
    padding-top: 140px;
}

/*******loader*****/
#loader_section {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    background: #000000b8;
    z-index: 9999999;
    height: 100vh;
    padding: 30vh 0px;
}

#loader_section p {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
}

#loader_section img {
    width: 100px;
    margin-bottom: 25px;
}

/*********Morgen Footer************/
.morgeninternet-footer {
    background: #000000;
    width: 100%;
    height: 50px;
    display: block;
    text-align: center;
    transition: 0.3s all;
}

.morgeninternet-footer:hover {
    background: #202020;
    transition: 0.3s all;
}

.morgeninternet-footer>img {
    height: 35px;
    padding-top: 15px;
}


/****aanbod dtl****/
.kenteken_np {
    background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
    background-repeat: no-repeat;
    background-position: left;
    padding: 4px 10px 6px 20px;
    color: #000;
    background-size: contain;
}

.star_icon {
    margin-bottom: 30px;
}

.star_icon h4 {
    padding-bottom: 10px;
    /* text-transform: uppercase; */
    padding-top: 15px;
    margin-bottom: 15px;
    /* color: #1c1c1c;*/
    border-bottom: 1px solid #181716;
    padding-bottom: 10px;
    color: rgba(18, 18, 18, 1);
}

.star_icon p img {
    width: 15px;
    margin-top: -3px;
    margin-right: 5px;
}

.star_icon p {
    padding-bottom: 6px;
    word-break: break-word;
}

.photo_contnt li img {
    width: 15px;
    margin-left: 5px;
}

.star_icon h3 {
    margin: 40px 0 30px;
}

.aanbod-detail-tab-sec .tab-content .star_icon p {
    margin: 0;
}

.bullet-panel h3 {
    margin-bottom: 30px;
}

.cursor {
    cursor: pointer;
}

.aanbod-loader {
    width: 45px;
    height: 40px;
    background: linear-gradient(#555 calc(1*100%/6), #fff 0 calc(3*100%/6), #555 0),
        linear-gradient(#555 calc(2*100%/6), #fff 0 calc(4*100%/6), #555 0),
        linear-gradient(#555 calc(3*100%/6), #fff 0 calc(5*100%/6), #555 0);
    background-size: 10px 400%;
    background-repeat: no-repeat;
    animation: matrix 1s infinite linear;
}

@keyframes matrix {
    0% {
        background-position: 0% 100%, 50% 100%, 100% 100%
    }

    100% {
        background-position: 0% 0%, 50% 0%, 100% 0%
    }
}

.load_aanbod {
    justify-content: center;
    display: flex;
    column-gap: 30px;
    align-items: center;
    color: #fff;
}


.carpass-img {
    width: 115px;
}










.widget-btn-area {
    bottom: 2rem;
    left: 3rem;
    z-index: 99;
    font-family: "Nunito Sans", sans-serif;
}

.widget-btn {
    border-radius: 10px;
    background: #FDBF03;
    box-shadow: 0px 15px 10px 5px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 15px 10px 5px rgba(0, 0, 0, 0.07);
    padding: 1.3rem 2.5rem;
    font-size: 1.7rem;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
}

.widget-btn span:after,
.widget-mobile span:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    right: -1.5rem;
    content: '';
    width: 1rem;
    height: 1rem;
    background: url(../images/next-white.svg) no-repeat center/ contain;
}

.widget-content {
    background: #121212;
    padding: 4.5rem;
    -webkit-box-shadow: -5px 1px 17px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -5px 1px 17px 3px rgba(0, 0, 0, 0.2);
    box-shadow: -5px 1px 17px 3px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    width: 51rem;
    display: none;
}

.arw-rotate {
    margin-top: -2.5rem;
    margin-bottom: 1rem;
    transform: rotate(-90deg);
    cursor: pointer;
}

.widget-content h4,
.widget-content h5 {
    text-transform: unset;
    color: #fff;
    letter-spacing: normal;
}

.widget-content h4 {
    font-weight: 500;
    font-size: 2.4rem;
}

.widget-content h5 {
    font-weight: 400;
    font-size: 1.7rem;
    margin: 1.5rem 0 5.4rem;
}

.widget-content h5 span {
    text-decoration: underline;
    color: rgba(253, 191, 3, 1);
}

.widget-content button,
.widget-mobile button {
    border-radius: 5px;
    color: #121212;
    border: 2px solid rgba(253, 191, 3, 1);
    background: rgba(253, 191, 3, 1);
    padding: 1.2rem 2rem;
    font-size: 1.7rem;
    font-weight: 600;
    margin-right: .5rem;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    cursor: pointer;
}

.widget-content button:hover,
.widget-mobile button:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #FF7100 !important;
}

.monthly_amount {
    cursor: pointer;
}

.skiptranslate {
    display: none;
}

#google_translate_element {
    height: 0;
    overflow: hidden;
}

.morgeninternet-footer {
    border: 0;
    width: 100%;
    /* margin-bottom: 0; */
    height: 50px;
    display: block;
    /* border-radius: 10px;
    margin: 10px auto 0;
    max-width: calc(100% - 24px); */
}


@media(max-width: 767.98px) {
    .morgeninternet-footer.viewcar-footer {
        margin-bottom: 68px !important;
        height: 50px;
    }

    .widget-mobile {
        background: #1c1c1c;
        padding: 1.5rem 1.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99;
        font-family: "Nunito Sans", sans-serif;
    }

    .widget-mobile .d-flex {
        gap: 5px;
    }

    .widget-mobile button {
        padding: .65rem;
        font-size: 1.45rem;
    }

    .widget-mobile h6 span {
        font-size: 1.45rem;
        cursor: pointer;
        font-weight: 600;
        padding-right: 2.5rem;
        color: #fff;
        margin-right: .75rem;
    }

    .widget-mobile h6 span:after {
        background: url(../images/arw-color.svg) no-repeat center/ contain;
        right: 0;
    }

    .widget-mobile h6 span:not(.active):after {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
    }

    .widget-mobile h6 span.active {
        color: #FF7100;
    }

    .widget-mobile h6 span.active:after {
        transform: translateY(-50%) rotate(-90deg);
    }

    .widget-mobile-content {
        bottom: 6.5rem;
        background: #121212;
        padding: 3rem 1.5rem 1.5rem;
        z-index: 99;
        display: none;
    }

    .widget-mobile-content.show-div {
        display: block;
    }

    .widget-content-wrap {
        background: #1c1c1c;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
    }

    .widget-mobile-content td {
        color: #fff;
        vertical-align: top;
        font-size: 1.45rem;
        font-weight: 400;
        padding: 4px 0;
    }

    .widget-mobile-content td a {
        color: #fff;
        text-decoration: none;
    }

    .widget-mobile-content td a:hover {
        color: #FF7100;
    }

    .whatsapp-block {
        background: #25D366;
        border-radius: 5px;
        width: 3.7rem;
        height: 3.7rem;
    }

    .whatsapp-block img {
        width: 1.8rem;
    }

    .widget-mobile-content td span {
        width: 2.2rem;
        height: 2.2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-right: 1.8rem;
    }
}

/*fix-wp*/
.fix-wp {
    position: fixed;
    height: 48px;
    width: 48px;
    background-color: #25D366;
    border-radius: 100%;
    z-index: 98;
    bottom: 50px;
    right: 30px;
}
.fix-wp img {
    width: 22px;
}
.fix-wp a {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fix-wp a img {
    width: 24px;
}

.popup .popuptext {
    display: none;
    width: 200px;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 3px;
    right: 3vw;
    font-size: small;
}

.notifcation {
    position: relative;
}

.alert-number {
    display: none;
    position: absolute;
    /* bottom: 28px; /
    bottom: 28px;
    / left: 16px; */
    right: -11px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    background-color: red;
    color: white;
    text-align: center;
    font-size: small;
    animation: shake 0.5s;
    animation-iteration-count: 1;
    top: -11px;
}

@media screen and (max-width: 600px) {
    .popuptext {
        right: 60px !important;
    }
}
@media (max-width : 767.98px){
    .fix-wp{
        display: none;
    }
}


.bk-btn-sec .common-btn::before, .bk-btn-sec
.common-btn::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background-color: #fff;
    border-radius: 6px;
    /* left: -50px; */
    top: 4px;
    left: 4px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    background-image: url(../images/back-btn-icon.svg);
    background-size: 6px;
    background-position: center center;
    background-repeat: no-repeat;
}
.bk-btn-sec .common-btn {
    padding: 12px 24px 12px 56px;
    background-color: #121212;
    color: #FFF;
}
.bk-btn-sec .common-btn strong{
    font-weight: normal;
}
.bk-btn-sec .common-btn::after {
    right: -50px;
    left: auto;
}
.bk-btn-sec .common-btn:hover {
    color: #FFF;
    padding-right: 56px;
    padding-left: 24px;
}
.bk-btn-sec .common-btn:hover::after {
    /* right: -50px; */
    right: 4px;
}
.bk-btn-sec .common-btn:hover::before {
    /* left: 4px; */
    left: -50px;
}
.contact-form-section{
    margin-bottom: 16px;
    margin-top: 16px;
}
/* .aanbod-range-filter {
    display: block !important;
} */
.aanbod-product-block .each-product-model h6{
    font-family: 'Roboto-Regular';
}
.share-social-media-button{
    border-radius: 100px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #121212;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.share-social-media-button:hover{
    background: #FDBF03;
    border-color: #FDBF03;
}
.banner-content-wrap h1 strong{
    font-weight: normal;
    color: #DFC370;
}
.sec-line.why-us-line-mob{
    display: none;
}
.privacy_section p{
    color: #121212;
    margin-bottom: 10px;
}
.privacy_section h2{
    color: #121212;
}
.privacy_section{
    padding: 160px 0 90px;
}
.verkocht-top h1{
    color: #121212;
}
.review-sec .WidgetTitle__Header-sc-c581efe-2{
    display: none;
}
.calsty {
    width: 100%;
    background: transparent;
}
.bk-btn-sec{
    padding-bottom: 30px;
}



/* --------------------------------------------------------------- */
.each-form-aear .row{
    margin-left: -11px;
    margin-right: -11px;
}
.each-form-aear .col-lg-4{
    padding-left: 11px;
    padding-right: 11px;
}
.each-form-area-heading h3 strong{
    font-weight: normal;
    color: #FDBF03;
    /* padding-right: 2px; */
}
.each-form-area-heading h6{
    color: #fff;
    font-family: 'Roboto-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    padding-top: 15px;
}
.each-form-area-heading p{
    max-width: 669px;
    margin-left: 45px;
    padding-top: 12px;
}
.each-form-area-heading{
    padding-bottom: 20px;
}
.each-form-aear{
    padding-bottom: 5px;
}
.each-form-aear label{
    color: #fff;
    padding-bottom: 18px;
    line-height: 24px;
}
.form-group.input-icon {
    position: relative;
}
.form-group.input-icon img {
    position: absolute;      
    top: 68%;
    left: 25px;
    transform: translateY(-50%);
    width: 34px;
    height: auto;
    pointer-events: none; 
}
.form-group.input-icon input {
    padding-left: 81px;
}
.Zoekopdracht-form-sec .form-wrap .common-btn{
    min-width: unset;
    background-color: #fff;
}
.Zoekopdracht-form-sec .form-wrap .common-btn::before, .Zoekopdracht-form-sec .form-wrap .common-btn::after{
    background-color: rgba(18, 18, 18, 1);
    background-image: url(../images/text-btn-arrow.svg);
}
.step-form-label label{
    color: rgba(242, 240, 239, 0.70);
    font-family: 'Roboto-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
.form-right .step-form-label label{
    padding: 17px;
    width: 100%;
}
.form-right .step-form-label.form-style{
    padding: 0;
}
.form-right .step-form-label.form-style:focus label {
    color: #F2F0EF;
}
.step-form-label label strong{
    font-weight: normal;
    display: flex;
    column-gap: 16px;
    align-items: center;
    font-size: 1.6rem;
    line-height: 24px;
}
.step-popup-btn {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.step-form-label label input {
	position: absolute;
	left: -9999px;
}
.step-form-label input:checked + strong em{
    border-color: #FDBF03;
    color: #FDBF03;
}
.step-form-label input:checked + strong{
    color: #fff;
}
.form-style:has(input:checked) {
    border-color: #FDBF03;
}
.step-form-label strong em{
    font-style: normal;
    border: 1px solid rgba(255, 255, 255, 0.70);
    color: #FFF;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-family: 'Roboto-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
.step-form-label strong em {
	font-weight: normal;
	display: flex;
	align-items: center;
	transition: 0.1s ease;
    flex-shrink: 0;
}
.step-form-label {
    overflow-y: auto;
    /* height: 160px; */
}
.form-input-img-upload {
    text-align: center;
    padding: 38px 24px 24px;
    border-radius: 10px;
    border: 1px solid rgba(242, 240, 239, 0.20);
    background: rgba(18, 18, 18, 0.20);
}
.form-input-img-upload h6{
    padding-top: 20px;
    padding-bottom: 10px;
    font-family: 'Roboto-Bold';
    color: rgba(242, 240, 239, 0.70);
}
.form-input-img-upload p{
    margin-bottom: 0;
}
.inkoop-form-sec .form-wrap .common-btn{
    min-width: unset;
    background-color: #fff;
}
.inkoop-form-sec .form-wrap .common-btn::before,.inkoop-form-sec .form-wrap .common-btn::after{
    background-color: rgba(18, 18, 18, 1);
    background-image: url(../images/text-btn-arrow.svg);
}
.each-form-aear .col-lg-6{
    padding-left: 11px;
    padding-right: 11px;
}
.option_error{
    width: 100%;
    background: none;
    position: relative;
    color: red;
    font-size: inherit;
    border: 0px solid #ddd;
    line-height: inherit;
    opacity: 0.87;
}
.foto_error{
    width: 100%;
    background: none;
    position: relative;
    color: red;
    font-size: inherit;
    border: 0px solid #ddd;
    line-height: inherit;
    margin-top: 10px;
    opacity: 0.87;
}
.each-form-area-heading h3{
    display: flex;
    column-gap: 8px;
	font-size: 2.5rem;
}
.product-spec h4{
    font-size: 1.8rem;
}