/* --------------------- 
bootstrap variables
--------------------- */

:root {
  /*custom colors*/
  --brand: #276fbe;
  --primary: #276fbe;
  --secondary: #5a91ca;
  --tertiary: #ececec;
  --quaternary: #284c80;
  --white: #ffffff;
  --black: #212529;
  --neutral: #e8e8e8;
  --light: #f0f0f0;
  --dark: #212529;
  /* boostrap colors */
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #ffffff;
  --bs-gray: #9C9C9C;
  --bs-gray-dark: #4A4A4A;
  /* theme colors */
  --bs-primary: var(--primary);
  --bs-secondary: #2b2929;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f0f0f0;
  --bs-dark: #212529;
  --bs-font-sans-serif: "Open Sans";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* borders */
  --bs-border-radius: 0rem;
  /* overwriting bootstrap colors*/
  --bs-link-color-rgb: $body-color;
}

/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v44-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/open-sans-v44-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v44-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v44-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    background-color: var(--white);
}


a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--secondary);
}

b, strong {
    font-weight: 700;
}

.img-cover {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.primary-bg {
  background-color: #f2f2f2;
  color: #333;
}

.secondary-bg {
  background-color: #2b2929;
  color: #f0f0f0;
}

.faller-gradient {
  background-image: linear-gradient(to right, #276fbe 0%, #276fbe 51%, #276fbe 100%);
  color: #ffffff;
}

.subtitle {
    color: #7f7f7f;
}

.heading-large {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* --------------------- 
limiting the container-fluid width 
to ensure ultra-wide screen support
--------------------- */
@media (min-width: 1800px) {
  .container-fluid {
    width: 1780px;
  }
}

/* --------------------- 
custom width container for a more uneven, line breaking layout
use wisely...
--------------------- */
@media (min-width: 1025px) {
  .container.custom-container {
    max-width: 100%;
    margin: unset;
  }
}

/* --------------------- 
used on bootstrap rows to stretch the columns 
and is inner wrappers to fit the column biggest in height
--------------------- */
.row-eq-height {
  align-items: stretch;
}
.row-eq-height > div {
  align-items: stretch;
}
.row-eq-height > div > div {
  height: 100%;
}

body.faller-colors h1,
body.faller-colors h2,
body.faller-colors h3,
body.faller-colors h4,
body.faller-colors h5,
body.faller-colors h6,
body.faller-colors .h1,
body.faller-colors .h2,
body.faller-colors .h3,
body.faller-colors .h4,
body.faller-colors .h5,
body.faller-colors .h6 {
  font-weight: bold;
}

body.faller-colors h4, body.faller-colors .h4{
  margin-top: 15px;
  margin-bottom: 10px;
}

.btn {
  font-weight: 400;
  text-align: center;
  
}

.faller-btn-primary {
  background-size: 200% auto;
  color: #ffffff;
  background-image: linear-gradient(to right, #276fbe 0%, #276fbe 51%, #276fbe 100%);
  transition: 0.2s all ease-in;
  font-size: 0.9rem !important;
  color: var(--light) !important;
  font-weight: bold;
}
.faller-btn-primary:hover,.faller-btn-primary.active {
  background-position: right center;
  color: #000  !important;
}
.faller-btn-primary:disabled {
  background-image: linear-gradient(to right, #212529 0%, #f0f0f0 51%, #212529 100%);
}

.faller-btn-outline,
.btn-outline {
  border: 2px solid #212529;
  background-color: transparent;
  transition: 0.2s all ease-in;
}
.faller-btn-outline:hover,
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--light);
}
.faller-btn-outline:hover svg path,
.btn-outline:hover svg path {
  fill: #f0f0f0;
}
.faller-btn-outline.negative,
.btn-outline.negative {
  border-color: #ffffff;
  color: #ffffff;
}
.faller-btn-outline.negative:hover,
.btn-outline.negative:hover {
  color: #212529;
  background-color: var(--primary);
}

.btn-list .btn {
  width: 100%;
}
.btn-list .btn:not(:last-child) {
  margin-bottom: 1rem;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
}

/* --------------------- 
overwriting bootstrap buttons
--------------------- */
.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: var(--white);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--white);
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary);
  --bs-gradient: none;
}

.card {

  border-radius: 10px;
}

.card-footer.seamless {
  border-top: unset;
  background-color: inherit;
}

/* --------------------- 
Custom form styling
--------------------- */
.custom-form.negativ .form-control::-moz-placeholder {
  color: #f0f0f0;
}
.custom-form.negativ .form-control::placeholder {
  color: #f0f0f0;
}
.custom-form.negativ textarea::-moz-placeholder {
  color: #f0f0f0;
}
.custom-form.negativ textarea::placeholder {
  color: #f0f0f0;
}
.custom-form .row:not(:last-of-type) {
  margin-bottom: 1rem;
}
.custom-form .form-control {
  background-color: #ffffff;
}

/* --------------------- 
Footer Form
--------------------- */
#ajax-kontakt-footer .btn {
  width: 100%;
  height: 100%;
}
#ajax-kontakt-footer .form-control {
  background-color: transparent;
}

/* --------------------- 
faded background overlay
**NOTE: overlay is mostly overlapping child elements => set them to a higher z-index to show them **
--------------------- */
.bg-overlay {
  --overlay-opacity: 1;
  --color: var(--white);
  --bg-color-1: rgba(0, 0, 0, 0.6);
  --bg-color-2: rgba(255, 255, 255, 0);
  position: relative;
  overflow: hidden;
}
.bg-overlay > * {
  color: var(--color);
}
.bg-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, var(--bg-color-1) 0%, var(--bg-color-2) 100%);
  opacity: var(--overlay-opacity);
  transition: all 0.5s;
  z-index: 0;
}
.bg-overlay.overlay-hover {
  --overlay-opacity: 0;
}
.bg-overlay.overlay-hover:hover {
  --color: var(--light);
  --overlay-opacity: 1;
}

.bg-image-box {
  min-height: 25vh;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 1s;
}
.bg-image-box.img-hover-zoom {
  overflow: hidden;
  transition: all 1s;
  background-size: 100%;
}
.bg-image-box.img-hover-zoom:hover {
  background-size: 120%;
}
.bg-image-box.color-on-hover {
  filter: grayscale(0.8);
}
.bg-image-box.color-on-hover:hover {
  filter: unset;
}

.container-fluid.image-grid-area {
  padding: 0;
}

.image-grid-wrapper {
  display: grid;
}
.image-grid-wrapper.gap {
  gap: 0.5rem;
}
.image-grid-wrapper .gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-grid-wrapper > * {
  margin: unset;
}

/* --------------------- 
grid with only one line => classic row/column
--------------------- */
.image-grid-wrapper.img-row {
  display: flex;
  flex-wrap: wrap;
}
.image-grid-wrapper.img-row.gap {
  gap: 0.5rem;
}
.image-grid-wrapper.img-row > * {
  width: 25%;
}

.content-hover-box {
  position: relative;
}
.content-hover-box .manu-logo img {
  max-height: 5rem;
}
.content-hover-box .hover-content {
  color: #ffffff;
  z-index: 1;
  width: 100%;
  position: absolute;
  left: 0;
  top: 35%;
  transition: all 0.5s;
}
.content-hover-box .hover-content * {
  transition: all 0.5s;
}
.content-hover-box .hover-content .text-on-hover {
  padding: 1.5rem;
  opacity: 0;
}
.content-hover-box:hover .text-on-hover {
  opacity: 1;
}

.company-info .wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.company-info .icon {
  display: inline-block;
}
.company-info .address {
  margin-left: 1.8rem;
}

.device-filter {
  background-color: #ffffff;
  padding: 0.5rem;
}
.device-filter .form-group {
  margin-bottom: 1rem;
}
.device-filter .form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.device-filter .btn {
  display: block;
  width: 100%;
}

#widgetOffcanvas .sticky-filter {
  position: fixed;
  z-index: 10;
}

/* --------------------- 
    Go to top Button
--------------------- */
.to-top {
  background-color: var(--black);
  color: #f0f0f0;
  border-radius: 0.15rem;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  cursor: pointer;
  z-index: 99;
  width: 2.1em;
  height: 2.1em;
  line-height: 2.1;
  bottom: 3%;
  right: 30px;
  transition: 0.4s;
  transform: translateY(15%);
}
.to-top:hover {
  transform: translateY(-3px);
}

.navbar .nav-item {
  position: relative;
}
.navbar .nav-item .ul-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background-color: #ffffff;
}

.navbar .nav-language a {
  color: var(--primary);
}

@media (max-width: 991px) {
  .navbar .nav-item .ul-dropdown-menu {
    display: none;
  }
  .navbar .nav-item .ul-dropdown-menu.active {
    display: block;
  }
  .page-title-area .features-top img {
    position: unset !important;
  }
  .cms-content .service .text h4 {
    font-size: 1.2rem !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .cms-content .service .text h3 {
    font-size: 1.4rem !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .cms-content .service .text {
    max-width: 90% !important;
    padding: 15px 15px !important;
   }
   .page-title-area h2 {
    font-size: 1.8rem !important;
  }
}
@media (min-width: 992px) {
  .navbar .nav-item .ul-dropdown-menu {
    position: absolute;
    left: 0;
    z-index: 99;
    min-width: 250px;
    max-width: 420px;
    top: auto;
    opacity: 0;
    transition: transform 0.3s ease-out;
    transform: translateY(10%);
    -ms-box-shadow: 5px 5px 24px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 24px 15px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    background-color: var(--white);
    color: var(--dark);
  }
  .navbar .nav-item .ul-dropdown-menu .ul-dropdown-menu {
    top: 0;
    opacity: 0;
    left: 200px;
    visibility: hidden;
    transform: translateY(5px);
  }
  .navbar .nav-item:hover > .ul-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-item {
    color: var(--dark);
    font-size: 0.95rem;
  }
  .navbar .nav-item .nav-link {
    color: var(--dark);
  }
}

.condition-indicator {
  display: flex;
  gap: 10px;
  margin-bottom: 0.4rem;
}
.condition-indicator span {
  background-color: #e8e8e8;
  width: 1.4rem;
  height: 1rem;
  display: block;
  border-radius: 0rem;
}
.condition-indicator.neu span {
  background-color: #59a101;
}
.condition-indicator.sehr-gut span:nth-child(-n+5) {
  background-color: #59a101;
}
.condition-indicator.gut span:nth-child(-n+4) {
  background-color: #76b729;
}
.condition-indicator.normal span:nth-child(-n+3) {
  background-color: #76b729;
}
.condition-indicator.schlecht span:nth-child(-n+2) {
  background-color: #f59133;
}

/* --------------------- 
Default elements
--------------------- */
.custom-swiper {
  position: relative;
}
.custom-swiper .swiper-nav {
  position: absolute;
  bottom: 10px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  left: auto;
  font-size: 1rem;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
}
.custom-swiper .swiper-nav.next {
  right: 10px;
}
.custom-swiper .swiper-nav.prev {
  right: 50px;
}
.custom-swiper .swiper-nav.swiper-button-disabled {
  color: #f0f0f0;
  background-color: rgba(0, 0, 0, 0.3);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.device-gallery .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    max-height: 478px;
    -o-object-fit: cover;
    object-fit: cover;
}

.device-gallery .swiper-slide iframe {
    width:100%;
    height:480px;
    max-height:480px;
    max-width:650px;
    min-width:220px;
}

.thumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.swiper-slide.neugeraete img {
  width: auto;
  max-height: 400px;
  object-fit: unset;
}

#productSwiperIndex .swiper-slide img {
    display: block;
    width: auto;
    max-height: 230px;
    margin-left: auto;
    margin-right: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

/* --------------------- 
Image Slider on productlist
--------------------- */
.device-images {
  position: relative;
  overflow: hidden;
}
.device-images .swiper-slide {
  position: relative;
  overflow: hidden;
  display: table;
  table-layout: fixed;
  width: 100%;
  min-height: 226px;
}
.device-images .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.image-counter {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

/* --------------------- 
image slider on productdetail
--------------------- */
.device-gallery .main-image {
  position: relative;
  overflow: hidden;
}
.device-gallery .main-image .zoom-overlay {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 11;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 100%;
  border: 1px solid var(--primary);
  background: #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: 0.8s all;
}
.device-gallery .thumbs {
  height: 50%;
  margin-top: 10px;
  overflow: hidden;
}
.device-gallery .thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
}
.device-gallery .thumbs .swiper-slide:hover {
  opacity: 0.6;
}
.device-gallery .thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-column {
  transition: 0.5s all ease-out;
}

.product-spec-list {
  color: #ffffff;
  padding: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.775rem;
  background-color: var(--primary);
}
.product-spec-list svg path {
  fill: #ffffff;
}
.product-spec-list.soft {
  background-color: #F2F2F2;
  color: #2b2929;
  min-height:60px;
}
.product-spec-list.soft svg path {
  fill: #2b2929;
}
.product-spec-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-spec-list svg {
  max-width: 1.5rem;
  height: 2rem;
}
.product-spec-list .volt svg {
  max-height: 1.5rem;
}
.product-spec-list .load-weight svg {
  max-width: 1.1rem;
}
.product-spec-list .time svg {
  max-height: 1.4rem;
}

#quick_search {
  --bottom-color: var(--dark);
}
#quick_search .search-input,
#quick_search .input-group-text {
  background-color: transparent;
  border-color: transparent;
  color: var(--dark);
  font-size: 0.8rem;
}
#quick_search .search-input {
  min-width: 60%;
}
#quick_search .input-group-text {
  background-color: var(--primary);
  border-color: transparent;
  color: var(--light);
  font-size: 0.7rem;
}
#quick_search .input-group-text:hover {
  color: var(--dark);
}
#quick_search .input-group {
  margin-top: 1rem;
  border: 1px solid var(--primary);
  justify-content: space-between;
}
#quick_search .input-group input {
  field-sizing: content;
}

#quick_search svg,
#quick_search svg * {
  fill: var(--light);
}
#quick_search .search-input::-moz-placeholder {
  color: var(--bottom-color);
}
#quick_search .search-input::placeholder {
  color: var(--bottom-color);
}
#quick_search .search-input:focus-visible {
  outline: none;
}
#quick_search .search-input:focus-visible::-moz-placeholder {
  color: #D6D7DA;
}
#quick_search .search-input:focus-visible::placeholder {
  color: #D6D7DA;
}
#quick_search .input-group-text:hover svg * {
  fill: var(--black);
}

@media (min-width: 992px) {
  .list-card .product-spec-list {
    margin-top: 1rem;
    background-color: transparent;
    align-items: stretch;
    padding-left: 0;
    gap: 0;
  }
  .list-card .product-spec-list.soft li {
    background-color: #F2F2F2;
  }
  .list-card .product-spec-list li {
    background-color: var(--primary);
    padding: 0.3rem;
    min-width: 4.5rem;
  }
  .list-card .product-spec-list li.volt, .list-card .product-spec-list li.time {
    padding-top: 1rem;
  }
}

.sticky-contact {
  position: fixed;
  top: calc(50% - 110px);
  right: -386px;
  z-index: 20;
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: all 0.2s;
}
.sticky-contact:hover {
  right: 0;
}
.sticky-contact > div {
  background-color: #2b2929;
}
.sticky-contact .hover-icon {
  padding: 1rem;
  padding-left: 1.3rem;
}
.sticky-contact .hover-icon svg {
  width: 2.2rem;
  fill: #ffffff;
}
.sticky-contact .content {
  padding: 1rem;
}

.user-wrapper {
  position: relative;
}
.user-wrapper .user-name {
  display: none;
}
.user-wrapper.onHover .user-info {
  display: none;
}
@media (max-width: 820px) {
  .user-wrapper.onHover .user-info {
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
  }
  .logo {
    max-width: 16rem !important;
  }
  .navbar .nav-item {
    font-size: 0.90rem !important;
  }
  .device-images .swiper-slide {
    min-height: 250px;
  }
  .frontpage-top-area {
    background-image: unset !important;
  }
  .frontpage-top-area .content{
    padding-top: 35px !important;
    padding-left: 25px !important;
  }
  .frontpage-top-area h3{
    font-size: 2.2rem !important;
    margin-bottom: .35rem !important;
  }
  .device-gallery .swiper-slide img {
    max-height: 520px;
    max-width: 700px;
  }
  .device-gallery .swiper-slide iframe {
    height: 520px;
    max-height: 520px;
    max-width: 700px;
  }
  .haendler-area .haendler-manitou .text-overlay {
    width: 480px !important;
  }
  .haendler-area .haendler-manitou img.manitou-bg {
    display: none !important;
  }
  .haendler-area .haendler-manitou .text-overlay .text {
    width: 110% !important;
  }
  .haendler-area .haendler-bobcat .haendler-logo {
    left: 10px !important;
    top: -60px !important;
   }
}
@media (max-width: 450px) {
  .logo {
    max-width: 12rem !important;
  }
  .search-area .content span {
    font-size: 0.8rem !important;
  }
  .search-area .content h3 {
    font-size: 0.8rem !important;
  }
  .search-area .content {
    width: 95% !important;
    height: 90% !important;
  }
  .search-area {
    margin-top: 96px !important;
  }
  .logo {
    margin-right: 0.5rem !important;
  }
  #quick_search .search-input {
    width: 140px !important;
    min-width: unset;
    font-size: 0.73rem;
  }
  #productSwiperIndex .swiper-slide img {
    max-height: 290px;
  }
  .device-gallery .swiper-slide img {
    max-height: 300px;
  }
  .device-gallery .swiper-slide iframe {
    max-height: 300px;
  }
  .device-images .swiper-slide {
    min-height: 300px;
  }
  .search-content {
    width: 98% !important;
    max-height: 160px !important;
  }
  nav.quick-contact {
    display: none !important;
  }
  .haendler-area .haendler-manitou .text-overlay {
    width: 100% !important;
    height: 680px !important;
  }
  .haendler-area .haendler-manitou .text-overlay:after {
    display: none !important;
  }
  .haendler-area .haendler-manitou .text-overlay .text {
    width: 95% !important;
    margin: 0 !important;
    padding: 10px !important;
  }
  .haendler-area .haendler-manitou {
    height: 700px !important;
  }
  .company-seo-area .seo-rounded img{
    max-width: 100% !important;
    max-height: 100% !important;
  }
  .haendler-area .haendler-bobcat .text-overlay {
    position: relative !important;
    right: unset !important;
    top: unset !important;
    height: unset !important;
    width: 100% !important;
    background: unset !important;
  }
  .haendler-area .haendler-bobcat {
    height: 760px !important;
  }
  .super-large-container.company-features-area {
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
  }
  
}

.user-wrapper.onHover .user-info p {
  color: black;
  margin: unset;
  line-height: 1.2;
}
.user-wrapper.onHover .user-info p:last-of-type {
  margin-bottom: 1.2rem;
}
.user-wrapper.onHover .user-info p,
.user-wrapper.onHover .user-info a {
  font-size: 0.9rem;
}
@media (min-width: 765px) {
  .user-wrapper.onHover .user-name {
    display: block;
    position: absolute;
    bottom: 3rem;
    padding: 1rem;
    text-align: center;
    width: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
  }
}
.user-wrapper.onHover:hover .user-name {
  display: none;
}
.user-wrapper.onHover:hover .user-info {
  display: block;
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 1rem 2rem 1rem;
}

@media (min-width: 765px) {
  .widget .user-wrapper.onHover .user-name {
    bottom: 1rem;
    padding: 0.5rem 0;
  }
}
.widget .user-wrapper .user-img img {
  max-height: 10rem;
  width: auto;
}

/* --------------------- 
swiper js navigation styling
--------------------- */
.swiper-body {
  position: relative;
  --nav-border-color: var(--dark);
  --svg-color: var(--dark);
}
.swiper-body.has-nav {
  padding-bottom: 4rem;
}
.swiper-body.negative {
  --svg-color: var(--white);
}
.swiper-body.themed {
  --svg-color: var(--primary);
  --nav-border-color: var(--primary);
}

.swiper-nav {
  position: absolute;
  bottom: 10px;
  width: auto;
  z-index: 11;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 0 1rem;
  opacity: 0.6;
}
.swiper-nav:not(.start) {
  right: 0;
}
.swiper-nav.start {
  left: 0;
}
.swiper-nav.circle .nav-btn {
  border: 1px solid var(--nav-border-color);
  border-radius: 100%;
}
.swiper-nav.small {
  --nav-btn-width: 2rem;
  --nav-btn-height: 2rem;
}
.swiper-nav.small svg {
  width: calc(var(--nav-btn-width) / 2);
}
.swiper-nav svg {
  fill: var(--svg-color);
}
.swiper-nav .nav-btn {
  background-color: transparent;
  width: var(--nav-btn-width);
  height: var(--nav-btn-height);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
}
.swiper-nav .nav-btn:hover {
  opacity: 1;
}
.swiper-nav .nav-btn.next svg {
  transform: rotate(180deg);
  margin-left: 4px;
}
.swiper-nav .nav-btn.prev svg {
  margin-right: 4px;
}

.swiper-pag {
  position: absolute;
  bottom: 1.7rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.swiper-pag.line-pagination .pag-item {
  width: 2.8rem;
  height: 0.25rem;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  background-color: #9C9C9C;
}
.swiper-pag.line-pagination .pag-item.pag-active {
  background-color: #ffffff;
}

/* --------------------- 

links, badges
--------------------- */

.footer-badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.footer-badges-wrapper .cat {
  background-color: #cacaca;
  color: #595858;
  font-size: 0.875rem;
  padding: 4px;
}
.footer-badges-wrapper .cat:hover {
  color:  var(--light);
  background-color: var(--primary);
}

footer {
  padding-top: 3rem;
  padding-bottom: 1rem;
  color: var(--dark);
  background-color: var(--tertiary);
  background-size: cover;
  background-blend-mode: soft-light;
  font-size: 0.875rem;
}
footer a {
  color: var(--primary);
  text-decoration: none;
}
footer a:hover {
  color: var(--dark);
}
footer ul {
  list-style-type: none;
  margin: unset;
  padding: unset;
}

.footer-content {
  padding-bottom: 2rem;
}

.footer-content .footer_block{
  min-width: 80px;
  float:left;
}

.footer-top {
  background-color: var(--primary);
}

.footer-top h3{
  color: var(--light);
  font-size: 1.6rem;
}

.footer-top a{
  color: var(--light);
}

.footer-top i{
  color: var(--light);
}

.footer-top svg {
  fill: var(--light);
}

.footer-top svg:hover path {
  fill: black;
  transition: all ease 0.3s;
}

.footerlogo {
  max-width: 300px;
}

.footerlogo_small {
  max-width: 150px;
}

.standard .flag, .social-info .flag {
    max-width: 20px;
    margin-right: 5px;
}

@media (max-width: 991px) {
  .footer-content > div {
    margin-bottom: 2rem;
  }
}

.copyright {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid;
}
.copyright .legal-links a {
  margin-right: 0.5rem;
  text-transform: uppercase;
}

.cr-liftfinder a {
  color: var(--dark) !important;
}

.cr-liftfinder a:hover {
  color: var(--light) !important;
}


/* --------------------- 
    Header
--------------------- */
header {
    border-bottom: 1px solid var(--primary);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* --------------------- 
menu navigation
--------------------- */
.navbar {
  padding: 1.2rem 0;
  color: var(--dark);
  background-color: rgba(255, 255, 255, 1);
  --icon-color: var(--dark);
  /* --------------------- 
  main navbar
  --------------------- */
  /* --------------------- 
  burger menu
  --------------------- */
  /* --------------------- 
  sublinks
  --------------------- */
}
.navbar .nav-item .manu-link-logo {
    max-height: 1.8rem;
    max-width: 120px;
}
@media (min-width: 1024px) {
  .navbar .navbar-nav {
    gap: 0.7rem;
    padding-top: 2px;
  }
}
@media (min-width: 1400px) {
  .navbar .navbar-nav {
    gap: 0.5rem;
    padding-top: 4px;
  }
}
.navbar .nav-item.active .nav-link {
  color: #26345b;
  border-bottom: 1px solid #26345b;
}
@media (max-width: 992px) {
  .navbar .nav-item .first-level,
  .navbar .nav-item .ul-dropdown-menu .nav-item {
    border-bottom: 1px solid;
  }
  .navbar .nav-item .first-level {
    border-bottom-color: #c6c6c6;
  }
  .navbar .nav-item .ul-dropdown-menu .nav-item {
    border-bottom-color: #c6c6c6;
  }
}
.navbar .nav-item .inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .nav-item .nav-link {
  transition: 0.4s font-size;
}
.navbar .nav-item .nav-link.first-level {
  font-weight: 400;
}
@media (max-width: 1024px) {
  .navbar .nav-item {
    font-size: 0.70rem;
  }
}
@media (min-width: 1200px) {
  .navbar .nav-item .nav-link.first-level,
  .navbar .nav-language {
    border-bottom: 2px solid transparent;
    font-size: 1.05rem;
  }
  .navbar .nav-language {
    padding-top: 4px;
  }
  .navbar .nav-item .nav-link.first-level:hover,
  .navbar .nav-language:hover {
    border-bottom: 2px solid var(--primary);
  }
  .navbar .top-menu:not(.offCan) .nav-link.first-level,
  .navbar .top-menu:not(.offCan) li {
    font-size: 0.85rem;
  }
}
.navbar .nav-item .nav-link .fa {
  font-size: 0.775rem;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler svg * {
  stroke: var(--icon-color);
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  border: none;
}
.navbar .ul-dropdown-menu .nav-item {
  padding: 0.5rem 0.8rem;
}
.nav-link {
  padding: 0.2rem 0;
}
.navbar .ul-dropdown-menu .nav-item:hover {
  background-color: rgba(230, 230, 230, 0.3);
}
.navbar.transparent-nav:not(.fixed-top) {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 2455,0.95);
  --icon-color: var(--dark);
}
@media (min-width: 992px) {
  .navbar.transparent-nav:not(.fixed-top) .nav-link.first-level {
    color: #333;
  }
  .navbar.transparent-nav:not(.fixed-top) .nav-link.first-level:hover {
    border-color: var(--secondary);
  }
  .navbar .nav-item .nav-link.first-level {
  color: var(--dark);
  }
}
.navbar.fixed-top {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--primary);
  background-color: var(--light);
  transition: background-color 0.7s ease !important;
}
.navbar.fixed-top .navbar-brand img {
  max-width: 12rem;
  height: auto;
}
.navbar.fixed-top .nav-link {
  font-size: 1rem;
}
.navbar.fixed-top .nav-link.first-level {
  color: #63645E;
}

@media (max-width: 1180px) and (min-width: 992px) {
  .logo {
    max-width: 10rem !important;
  }
  .navbar .nav-item .nav-link.first-level, .navbar.fixed-top .nav-link.first-level {
    font-size: 0.75rem;
  }
  .navbar .navbar-nav {
    gap: 0.2rem;
  }
  .search-area {
    margin-top: 85px !important;
  }
  .device-gallery .swiper-slide img {
    max-height: 345px;
  }
  .device-images .swiper-slide {
    min-height: 250px;
  }
  .device-gallery .swiper-slide iframe {
    height:345px;
  }
  .navbar .nav-language {
    padding-top: 4px;
    font-size: 0.75rem;
  }
  .haendler-area .haendler-manitou .text-overlay {
    width: 450px !important;
  }
  .haendler-area .haendler-manitou img {
    object-position: 250px 0px !important;
  }
  .haendler-area .haendler-manitou .text-overlay .text {
    width: 120% !important;
  }
  .related-products-area .device-images .swiper-slide {
    min-height: 220px;
  }
}

/* --------------------- 
    phone, mail and contact links
--------------------- */
.header-topline {
  font-size: 0.875rem;
}
.header-topline .quick-contacts {
  background-color: rgba(255, 127, 43, 0.85);
  color: var(--dark);
}
.header-topline .quick-contacts svg {
  max-width: 1rem;
}
.header-topline .quick-contacts div {
  display: flex;
}
.header-topline .quick-contacts > div {
  justify-content: space-between;
}

header .company-info {
  padding: 0.5rem 0;
  gap: 1rem;
  color: var(--white);
}

header .company-info a{
  color: var(--light);
}

header .company-info a:hover{
  color: var(--dark);
}

@media (max-width: 991px) {
  header .company-info {
    font-size: 0.8rem;
    justify-content: space-around;
  }
}
header .company-info .wrapper {
  align-items: center;
}

/* --------------------- 
    Logos
--------------------- */
.header-bar {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .header-bar img {
    max-width: 8rem;
  }
}

.logo {
  max-width: 14rem;
  margin-right: 3rem;
  margin-left: 1rem;
}

.footer-logo {
    max-width: 3rem;
    margin-right: 1.2rem;
}

.navbar.fixed-top .logo {
  max-width: 8rem;
}

.logo_2 {
  max-width: 16rem;
}

/* --------------------- 
search
--------------------- */
.header-search .input-group-text {
  background-color: transparent;
  border-left: none;
}
.header-search .form-control {
  border-right: none;
  min-width: 220px;
}

.search-area {
  background-color: var(--primary);
  color: var(--light);
  margin-top: 100px;
  min-height: 120px;
  padding: 2.5rem 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-content {
  background-color: var(--white);
  color: var(--dark);
  max-height: 140px;
  max-width: 800px;
  width: 70%;
  height: 80%;
  padding: 2rem 3em;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.swiper-search {
    position: absolute;
    top: 330px;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    left: 0;
    width: 100%;
    z-index: 2;
}

.search-content h3{
  color: var(--dark);
  font-size: 1.0rem;
}

.search-content span{
  color: var(--primary);
  font-size: 1.0rem;
}

.frontpage-top-area {
  background-color: var(--primary);
  color: var(--light);
  margin-top: 100px;
  background-image: url('../images/dm_zinken_visual_negativ.png');
  background-size: 480px;
  background-position: right 20px;
  background-repeat: no-repeat;
}

.frontpage-top-area .content{
  color: var(--light);
  padding-left: 75px;
  padding-top: 50px;
  min-height: 280px;
}

.frontpage-top-area h3{
  color: var(--light);
  font-size: 2.8rem;
  margin-bottom: .3rem;
}

.frontpage-top-area .logo_small {
    max-width: 130px;
}

.breadcrumb-area {
  background-color: unset;
  color: var(--dark);
  margin-top: 1rem;
}

.breadcrumb-area .breadcrumb-list {
  padding: 0.5rem 0;
  margin: unset;
}

.page-title-area {
  margin-bottom: 2rem;
}

.page-title-area h2{
  font-size: 2rem;
  color: var(--dark);
}

.product-base .product-title{
  font-size: 2.5rem;
  color: var(--primary);
}

.device-list-area .product-title{
  font-size: 2.5rem;
  color: var(--primary);
}

/* --------------------- 
    Base Styling
--------------------- */
section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.home section {
  margin-bottom: 3rem;
}

.company-features-area .features {
  position: relative;
}

.company-features-area .features img.features-base{
  border-radius: 50%;
  object-fit: cover;
}

.company-features-area .features img.features-base:hover{
  box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 15px;
}

.company-features-area .features .features-top{
  position: absolute;
  left: -2px;
  top: -2px;
}

.company-features-area .features img.features-top{
  max-width:150px;
  max-height:150px;
}

.company-features-area .card-title{
  color: var(--dark);
}

.company-seo-area .heading-large {
    margin-bottom: 0.5rem;
    color: #7f7f7f !important;
}

.company-seo-area .subtitle{
  color: var(--primary);
  font-size: 2.2rem !important;
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.company-seo-area .seo-rounded img{
  max-width:400px;
  max-height:400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 15px;
  margin-top: 2rem;
}

.haendler-area .haendler-manitou{
	position: relative;
  width: 100%;
  height: 600px;
}

.haendler-area .haendler-manitou img{
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: 450px 0px;
}

.haendler-area .haendler-manitou .text{
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: var(--primary);
  color: var(--light);
}

.haendler-area .haendler-manitou .text-overlay {
  position: absolute;
  left: 10px;
  top: -30px;
  height: 560px;
  width: 650px;
  background: var(--primary);
  color: var(--light);
  font-size: 1rem;
  display: inline-block;
}

.haendler-area .haendler-manitou .text-overlay:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0px;
  height: 458px;
  width: 320px;
  background: inherit;
  transform: rotate(35deg);
  transform-origin: top left;
}

.haendler-area .haendler-manitou .text-overlay .text {
  width: 100%;
  margin: 20px 0 20px 50px;
  z-index: 200;
  background-color: transparent;
}

.haendler-area .haendler-manitou .text-overlay .text .subtitle {
  color: var(--white);
  font-size: 1.1rem;
  
}

.haendler-area .text-overlay .btn-dm {
    background: #ca212c !important;
}

.haendler-area .text-overlay .btn-dm.light {
    background: var(--light) !important;
    color: var(--primary) !important;
}

.haendler-area .text-overlay .btn-dm.dark {
    background: var(--primary) !important;
    color: var(--light) !important;
}

.haendler-area .text-overlay .btn-dm.dark:hover {
    color: var(--secondary) !important;
}

.haendler-area .text-overlay .btn-dm.light:hover {
    color: var(--secondary) !important;
}

.haendler-area .haendler-manitou img.manufacturer{
  width: 300px;
  height: auto;
  object-fit: unset !important;
  object-position: unset !important;
}

.haendler-area .haendler-bobcat{
	position: relative;
  width: 100%;
  height: 700px;
}

.haendler-area .haendler-bobcat img{
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.haendler-area .haendler-bobcat .text-overlay {
  position: absolute;
  right: 40px;
  top: 30px;
  height: 550px;
  width: 400px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--dark);
  font-size: 1rem;
  display: inline-block;
}

.haendler-area .haendler-bobcat .text-overlay .text {
  width: 100%;
  padding: 20px;
  z-index: 200;
  background-color: transparent;
}

.haendler-area .haendler-bobcat .text-overlay .text .subtitle {
  color: var(--dark);
  font-size: 1.1rem;
}

.haendler-area .haendler-bobcat .haendler-logo {
  position: absolute;
  left: 40px;
  top: -30px;
  width:250px;
  height:250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.haendler-area .haendler-bobcat .haendler-logo img {
  width:160px;
  height:auto;
  object-fit: unset !important;
}

.features-btn-primary {
    background-size: 200% auto;
    color: var(--white);
    border: 2px solid var(--white);
    transition: 0.2s all ease-in;
    font-size: 0.9rem;
}

.features-btn-primary:hover {
    background-position: right center;
    color: #000;
    border: 2px solid var(--black);
}

.company-features-area .subtitle {
    color: #7f7f7f;
    font-size: 1.4rem !important;
}

.company-features-area .heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.company-features-area .heading-large {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.super-large-container {
    padding-left: unset;
    padding-right: unset;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: hidden;
}

.super-large-container.company-features-area {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background-color: #f7f7f7;
    color: var(--white);
}

.news-area {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.super-large-container .oversized-content {
    overflow: hidden;
}

.company-seo-area {
    background-color: #f7f7f7;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.cms-content .service{
	position: relative;
  width: 100%;
}

.cms-content .service img{
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

.cms-content .service .div-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cms-content .service .text{
  position: relative;
  max-width: 80%;
  margin-top: -150px;
  background-color: rgba(255, 255, 255, 0.80);
  color: var(--dark);
  border-radius: 5px;
  padding: 30px 30px;
}

.cms-content .features {
  position: relative;
}

.cms-content .features img.features-base{
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cms-content .features .service-logo {
    position: absolute;
    left: 5px;
    top: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--light);
    font-weight: bold;
}
.cms-content .features .service-logo:hover {
    box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 15px;
}

.cms-content .auszeichnungen {
    position: relative;
    border-radius: 5px;
    background: var(--tertiary);
    padding: 30px;
    margin-top: 130px;
}

.cms-content .geschichte h3{
    font-size: 3rem;
    color: var(--primary);
    margin-top: 1.8rem;
    margin-bottom: 0.4rem;
}

.cms-content .auszeichnungen img {
    position: absolute;
    display: block;
    margin: auto;
    max-width: 180px;
    max-height: 180px;
    left: 0;
    right: 0;
    top: -85px;
    z-index: 200;
}

.cms-content .geschichte .text{
    max-width: 80%;
    width: 400px;
}

.cms-content .geschichte {
    display: flex;
    justify-content: center;
    align-items: center;
}

.manufacturer-area .features {
  position: relative;
}

.manufacturer-area .features img.features-base{
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.manufacturer-area .features .service-logo {
    position: absolute;
    left: 5px;
    top: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--light);
    font-weight: bold;
}

.manufacturer-area .features .service-logo:hover{
  box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 15px;
}

.container.manufacturer-area-text {
  
}

.cat-img {
  display: flex;
  justify-content: center;
}

.page-title-area .features-top{
  position: relative;
}

.page-title-area .features-top img{
  position: absolute;
  display: block;
  margin: auto;
  max-width: 180px;
  max-height: 180px;
  left: 0;
  right: 0;
  top: -75px;
  z-index: 200;
}

.cms-content .service .text .heading{
  height: 140px;
}

.cms-content .service .text h3{
  font-size: 2rem;
  color: var(--primary);
}

.cms-content .service .text h4{
  font-size: 1.7rem;
  color: var(--bs-gray-600);
}


@media (min-width: 1000px) {
    .super-large-container .oversized-content {
    }
}

/* --------------------- 
    Swiper Slider
--------------------- */

#homeSlider {
  overflow: hidden;
  position: relative;
}
#homeSlider .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 55vh;
}
#homeSlider .content {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 10%), linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 100%);
}
#homeSlider .content p {
  font-size: 1.3rem;
}
#homeSlider .content h2 {
  font-size: 3.3rem;
}
#homeSlider .swiper-nav {
  position: absolute;
  bottom: 20px;
  right: 45%;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
}
#homeSlider .swiper-nav .nav-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
}
#homeSlider .swiper-nav .nav-btn svg {
  fill: #ffffff;
}
#homeSlider .swiper-nav .nav-btn:hover {
  background-color: #ffffff;
}
#homeSlider .swiper-nav .nav-btn:hover svg {
  fill: #212529;
}
#homeSlider .swiper-nav .nav-btn.next svg {
  transform: rotate(180deg);
  margin-left: 4px;
}
#homeSlider .swiper-nav .nav-btn.prev svg {
  margin-right: 4px;
}

/* --------------------- 
    Working fields
--------------------- */
.working-fields-area .product-swiper-container {
  overflow: hidden;
}

.working-field-wrapper {
  margin-bottom: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.working-field-wrapper:nth-child(odd) {
  flex-direction: row-reverse;
}
.working-field-wrapper .content {
  max-width: 80%;
}
@media (min-width: 992px) {
  .working-field-wrapper .overlap-content {
    margin-left: -150px;
  }
  .working-field-wrapper .overlap-content .content {
    text-align: right;
  }
  .working-field-wrapper:nth-child(odd) {
    background-color: #e3e3e3;
  }
  .working-field-wrapper:nth-child(odd) .overlap-content {
    margin-right: -150px;
  }
  .working-field-wrapper:nth-child(odd) .overlap-content .content {
    text-align: left;
  }
}

/* --------------------- 
    About us
--------------------- */
/* --------------------- 
    Benefits (inside about us)
--------------------- */
.benefit-area {
  padding-left: 3rem;
}
.benefit-area img {
  max-height: 4rem;
}
.benefit-area .benefits {
  align-items: stretch;
  gap: 3rem;
}
.benefit-area .benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
  flex: 1 1 100%;
  position: relative;
}
@media (min-width: 992px) {
  .benefit-area .benefit-item {
    flex: 1 1 45%;
  }
}
.benefit-area .benefit-item .year {
  color: var(--primary);
  font-weight: 900;
  font-size: 2rem;
  background-color: #ffffff;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits .benefit-wrapper {
    position: relative;
    padding: 12px;
    margin-top: 12px;
    margin-bottom: 3rem;
    display: flex
;
    flex-direction: column;
    align-items: center;
    background-color: var(--tertiary);
}

.benefits .icon-number {
    display: flex
;
    justify-content: center;
    align-items: center;
    padding-right: 2px;
    border-radius: 100%;
    background-color: var(--primary);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: -20px;
    left: 44%;
}



/* --------------------- 
    News
--------------------- */
.news-area .card-img-top {
  height: 15rem;
  overflow: hidden;
  display: flex;
}
.news-area .card-img-top img {
  align-self: center;
}

.news-card .card-text {
  font-size: 0.8rem;
}


/* --------------------- 
    Brands
--------------------- */
.brands-area .brands {
  margin-top: 4rem;
  justify-content: center;
  align-items: center;
}
.brands-area .brands img {
  max-height: 5rem;
}

/* --------------------- 
sections (after seo)
--------------------- */
.company-section-area .section-element {
  color: #ffffff;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.company-section-area .section-element .content-box {
  --bg-color-1: rgba(0, 0, 0, 1);
  --bg-color-2: rgba(255, 255, 255, 0);
  padding: 4rem;
  width: 100%;
  background: linear-gradient(0deg, var(--bg-color-1) 0%, var(--bg-color-2) 100%);
}
.company-section-area .section-element .content-box .faller-btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

/* --------------------- 
pagination
--------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.pagination .page-numbers,
.pagination .page-nav {
  padding: 0.5rem 1rem;
  color: inherit;
  line-height: 1.2;
  min-height: 2.5rem;
}
.pagination .page-numbers a,
.pagination .page-nav a {
  color: inherit;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover,
.pagination .page-nav.current,
.pagination .page-nav:hover {
  color: #212529;
  background-color: #ffffff;
}
.pagination .page-nav {
  border: 1px solid #ffffff;
}

/* --------------------- 
sorting
--------------------- */
.sort-area {
  margin-bottom: 1rem;
  background-color: #ffffff;
  padding: 1rem;
}
.sort-area .sort-wrapper {
  padding: 1rem 0;
}
.sort-area .sort-list {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  margin: unset;
}

/* --------------------- 
device list
--------------------- */
.device-list > div {
  margin-bottom: 1.5rem;
}

/* --------------------- 
device grid/list view
--------------------- */
.device-card {
  /* --------------------- 
  grid view
  --------------------- */
  /* --------------------- 
  list view
  --------------------- */
}
.manufacturer-area .device-card img {
  max-height: 260px;
}
.device-card .device-images img {
  transition: transform 1s;
}
.device-card:hover {
  color: var(--primary);
}
.device-card:hover .device-images img {
  transform: scale(1.1);
}
.device-card.grid-card .core-details {
  min-height: 115px;
  padding-top: 1rem;
}
.device-card.grid-card .action-wrapper {
  margin-right: 0.5rem;
}
.device-card.grid-card .action-wrapper .btn {
  font-size: 0.875rem;
  display: block;
}
.device-card.list-card .list-card-wrapper,
.device-card.list-card .data-wrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
}
.device-card.list-card .images {
  padding: unset;
}
.device-card.list-card .images .device-images {
  height: 100%;
}
@media (max-width: 992px) {
  .device-card.list-card .list-card-wrapper {
    -ms-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
  }
  .device-card.list-card .data-wrapper .core-details,
  .device-card.list-card .data-wrapper .device-price,
  .device-card.list-card .data-wrapper .product-spec-list {
    padding: 1rem;
  }
  .device-card.list-card .device-footer {
    display: flex;
    gap: 1rem;
  }
  .device-card.list-card .device-footer .action-wrapper {
    margin-right: 0.5rem;
  }
  .device-card.list-card .device-footer .action-wrapper .btn {
    font-size: 0.875rem;
  }
  .device-card.list-card .product-spec-list {
    background-color: #F2F2F2;
  }
}
@media (min-width: 992px) {
  .device-card.list-card .data-wrapper {
    align-items: center;
    padding: 1rem 0.5rem;
    background-color: #ffffff;
  }
  .device-card.list-card .data {
    border-right: 1px solid #cccccc;
  }
  .device-card.list-card .action-wrapper {
    margin-top: 1rem;
    justify-content: center;
    text-align: center;
  }
  .device-card.list-card .device-price {
    justify-content: center;
  }
}
.device-card .device-price {
  display: flex;
  flex-wrap: wrap;
}
.card-body {
    padding: 0 var(--bs-card-spacer-x) 5px;
}

.device-card .device-price h6 {
  margin-bottom: unset;
}
.device-card .device-price span {
  font-weight: 400;
  font-size: 0.875rem;
  margin-left:10px;
}

/* --------------------- 
sidebar
--------------------- */
@media (min-width: 992px) {
  .device-list-area .sidebar {
    margin-top: 30px;
  }
}

/* --------------------- 
product base information
--------------------- */
.product-base {
  position: relative;
  padding-top: 2rem;
}
.product-base.bg-colored {
  background: rgb(255, 255, 255);
}

.core-data-wrapper {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .core-data-wrapper {
    margin-top: unset;
    padding-left: 1.5rem;
  }
}
.core-data-wrapper > div {
  margin-bottom: 0.2rem;
}
.core-data-wrapper .data-display {
  display: flex;
  margin-bottom: 0.5rem;
}
.core-data-wrapper .data-display > *:first-child {
  min-width: 6.5rem;
}

/* --------------------- 
price
--------------------- */
.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--dark);
}

/* --------------------- 
actions
--------------------- */
.device-card.grid-card .action-wrapper {
    width: 100%;
}

.action-wrapper {
    display: flex
;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;
}

/* --------------------- 
contact persons
--------------------- */
.contact-area .contact-card {
  position: relative;
  overflow: hidden;
}
.contact-area .contact-card .card-body {
  background: rgba(255, 255, 255, 0.8);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
}
.card.contact img {
  max-width: 100%;
  height: auto;
}
.card.contact {
    flex-direction: column;
}
.products .card.contact {
    flex-direction: row;
    padding: 5px 5px 10px 5px;
}
.products .card.contact img {
  max-width: 170px;
  height: auto;
  margin: 0.5rem;
}

.contact-area .contact-card .card-body .card-title {
  margin: unset;
}

.sidebar .contact-area .card-body {
  margin-top: -85px;
}
.device-details-area .contact-area .btn {
  font-size: 0.9rem;
}

/* --------------------- 
Vehicle Data
--------------------- */
.vehicle-data-section {
  margin-top: 4rem;
  position: relative;
}
.vehicle-data-section .vehicle-data {
  margin-bottom: 1.5rem;
}
.vehicle-data-section .vehicle-data .wrapper {
  background: #ffffff;
  padding: 0rem;
  height: 100%;
}
.vehicle-data-section .heading h3 {
  font-weight: 500;
}
.vehicle-data-section table {
  width: 100%;
}
.vehicle-data-section table tr {
  width: 100%;
}
.vehicle-data-section table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #F2F2F2;
}
.vehicle-data-section table td:first-of-type {
  font-weight: 700;
  width: 50%;
}
.vehicle-data-section table.full td:first-of-type {
  width: unset;
}
.vehicle-data-section table.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.vehicle-data-section .equipment:not(:last-of-type)::after {
  content: ",";
}
@media (min-width: 1200px) {
  .vehicle-data-section .sticky-content {
    position: sticky;
    top: 130px;
  }
}

@media (min-width: 992px) {
  .sidebar.offcanvas-lg .offcanvas-body {
    display: block;
  }
}

/* --------------------- 
logos
--------------------- */
.manu-logo {
  max-width: 12rem;
}

/* --------------------- 
category overview
--------------------- */
.category-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
}
.category-card .overlay-card-text {
  --bg-color-1: rgba(0, 0, 0, 1);
  --bg-color-2: rgba(255, 255, 255, 0);
  min-height: 4rem;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 1rem 1.5rem;
}
.category-card .main-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.category-card .cat-img img {
  max-height: 240px;
  border-radius: 15px 0 0 0;
}
.category-card .toggle-btn {
  cursor: pointer;
}
.category-card .toggle-btn svg {
  fill: #ffffff;
  transition: all 0.2s;
  width: 0.9rem;
  transform: rotate(180deg);
  margin-left: 1rem;
}
.category-card .card-title {
  line-height: unset;
  font-size: 1.1rem;
}

.device-card .card-title {
  font-size: 1.2rem;
}

/* --------------------- 
overview
--------------------- */
.manufacturer-card {
  overflow: hidden;
  min-height: 15vh;
  background-color: #ffffff;
}
.manufacturer-card img {
  transition: all 1s;
}
.manufacturer-card:hover img {
  transform: scale(1.1);
}

/* --------------------- 
device list
--------------------- */
.manufacturer-product-card {
  position: relative;
  border-radius: 15px;
  min-height: 270px;
  padding-top: 10px;
}
.manufacturer-product-card h4{
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .manufacturer-product-card img {
    max-height: 200px;
  }
}

/* --------------------- 
device files
--------------------- */
.manufacturer-device-details-area .file-area {
  display: flex;
  gap: 1rem;
}
.manufacturer-device-details-area .img-wrapper img {
  max-height: 600px;
}
.manufacturer-device-details-area .manu-logo {
  max-height: 60px;
}

.file-area a {
  color: inherit;
}

/* --------------------- 
device detail
--------------------- */
/* --------------------- 
description
--------------------- */
.manufacturer-device-details-area .description {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.manufacturer-device-details-area .description .tab-content {
  background: #ffffff;
  padding: 2rem;
}

/* --------------------- 
related products
--------------------- */
.related-products-area {
  background: var(--tertiary);
  padding: 2rem 0;
}

.related-products-area h3{
  color: var(--primary);
}

.uf-border {
    border-radius: 10px 10px;
    overflow: hidden;
}

.img-zoom img {
    transition: all 0.7s;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

.tab-content {
    background: #ffffff;
    padding: 2rem;
    border-left: 1px solid var(--bs-border-color);
    border-right: 1px solid var(--bs-border-color);
    border-bottom: 1px solid var(--bs-border-color);
}

.nav-tabs .nav-link {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: #f3f3f3;
    border-color: var(--bs-nav-tabs-link-active-border-color);
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
}

.CMSSwiper {
    background: #ffffff;
    max-width:600px;
    margin-left: 0px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.accordion-button:not(.collapsed) {
    background-color: #d2d2d2;
    color: var(--primary);
}

.accordion {
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.05rem rgba(224, 35, 44, 0.5);
}

.accordion-body a:hover{
    color: var(--dark);
}

.negativ .form-control {
    color: #fff;
}

.form-select_small {
    font-size: 0.8rem;
}

.owl-carousel {
  position: relative;
}

.owl-carousel.owl-theme .owl-item {
  position: relative;
}

.owl-carousel.owl-theme .owl-nav .owl-prev {
  left: 0;
}

.owl-carousel.owl-theme .owl-nav .owl-next {
  right: 0;
}

.owl-carousel.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  top: 45%;
  font-size: 2rem;
  width: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--color-white);
}

.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--color-primary);
}

@media (max-width: 765px) {
  .owl-carousel.owl-theme .owl-nav {
    opacity: 0;
  }
}

.manufacturer-area .overview-wrapper {
    display: block;
    width: 100%;
    height: auto;
}

.manufacturer-area .overview-card {
    padding: 1.5rem;
    height: auto;
    border: 0.09rem solid var(--bs-light);
}

.manufacturer-area .overview-card img {
    max-height: 50px;
    max-width: 100%;
}

.manufacturer-area .overview-card img.img_top {
    max-height: unset;
    max-width: 100%;
}

.navbar-toggler, .navbar-toggler:hover {
   border: 0px;
}

.device-card.grid-card.member .action-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: unset;
}

.device-card.grid-card.member .action-wrapper .btn {
    padding: 12px 35px;
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

#MTVideo {
    width: 100vw;
    height: 70vh;
    object-fit: cover;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* --------------------- 
CUSTOM
--------------------- */

nav.quick-contact {
    position: fixed;
    right: 0;
    top: 120px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    z-index: 999;
}

.quick-contact .phone-badge {
    background-color: #3c3c3c;
}

.quick-contact .mail-badge {
    background-color: unset;
    color: var(--dark);
}

.quick-contact .mail-badge span{
    background-color: var(--primary);
    color: var(--light);
    padding: 3px 10px;
    border-radius: 10px;
    box-shadow: rgba(200, 200, 200, 0.45) 0px 5px 15px;
}

.quick-contact .mail-badge img{
    width: 50px;
    height: auto;
}

.quick-contact .contact-badge {
    background-color: #dadada;
    color: #3c3c3c;
}

.quick-contact .wa-badge {
    background-color: #25e47b;
    color: #fff;
}

.quick-contact a:hover {
    transform: none;
}

.quick-contact a {
	  text-decoration: none;
	  color: var(--dark);
	  font-size: 1rem;
	  width: 220px;
	  transform: translateX(170px);
	  transition: transform 500ms ease-in-out;
}

.quick-contact a [class*="fa-"] {
		font-size: 30px;
		padding: 5px;
}

.quick-contact a [class*="fab fa-"] {
		font-size: 34px;
		padding: 5px;
}

.cta-box {
	border:1px solid #e1e1e1;
	padding:40px 15px;
	width:100%;
	position:relative;
	background:#fafafa;
}

.nav-link.toggle i {
    position: absolute;
    top: 22px;
    right: 10px;
    transform: translateY(-50%);
}

.nav-link.subsub.toggle {
    padding-top: 0px;
    padding-bottom: 0px;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

/*
Source - https://stackoverflow.com/a/30737763
Posted by jbutler483
Retrieved 2026-02-10, License - CC BY-SA 3.0
*/

.btn-dm {
  margin: 5px 0;
  height: 50px;
  min-width: 120px;
  background: var(--primary);
  color: var(--light);
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 50px;
  cursor:pointer;
}

.btn-dm:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0px;
  height: 43px;
  width: 25px;
  background: inherit;
  transform: rotate(30deg);
  transform-origin: top left;
}




/* ================================= */
/* ------------ AGENTS  ------------ */
/* ================================= */
/***** AGENT STYLE - 1 *****/

#effect-3 .overlay {
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
}
#effect-3 .overlay a.expand {
    top: 0;
    bottom: 0;
    left: 50%;
    margin: auto 0 auto -30px;
}
#effect-3 .img.hover .overlay {
    width: 100%;
}
.effects {
    padding-left: 15px;
}
.effects .img {
    position: relative;
    float: left;
    margin-bottom: 5px;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}
.effects .img:nth-child(n) {
    margin-right: 5px;
}
.effects .img:first-child {
    margin-left: -15px;
}
.effects .img:last-child {
    margin-right: 0;
}
.effects .img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
    height: auto;
}
a.close-overlay.hidden {
    display: none;
}
#agent-1 .social-icons {
    position: relative;
    top: 23%;
    float: none;
}
#agent-1 .social-icons ul li {
    background: #fff;
    height: 33px;
    width: 33px;
    line-height: 33px;
    box-shadow: none;
}
#agent-1 .agent-text {
    background: var(--secondary);
    border-radius: 15px;
    margin: 0 24px 0 10px;
    padding: 15px 20px;
    position: relative;
    top: -62px;
    color: var(--white);
    min-height: 200px;
    font-size: 0.95rem;
}
#agent-1 .img .gri .effect-layla img {
    opacity: 0.9;
}

.agent-text > p {
    margin: 0;
    padding: 0;
    
}

.agent-text h3 {
    font-size: 1.35rem;
}

.agent-text h4 {
    color: var(--quaternary);
    font-size: 1.05rem;
}

.agent-text a:hover {
    color: var(--quaternary);
}

.thumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* Create three equal columns that floats next to each other */
.portfolio-column {
  display: none; /* Hide all elements by default */
}

/* The "show" class is added to the filtered elements */
.portfolio-show {
  display: block;
}