/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../vendor/Roboto/Roboto-300.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../vendor/Roboto/Roboto-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../vendor/Roboto/Roboto-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../vendor/Roboto/Roboto-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../vendor/Roboto_Mono/RobotoMono-300.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  font-size: 16px;

  --green-35: #2d862d;
  --green-25: #206020;
  --green-20:  #194d19;
  --green-95: #ecf9ec;
  --secondary: #3A7CA5;
  --white: #fff;
  --grey-10: #1a1a1a;
  --grey-15: #262626; /* footer colors */
  --grey-20: #333333; /*main font color */
  --grey-40: #666666;
  --grey-80: #cccccc;
  --grey-90: #e6e6e6;
  --grey-95: #f2f2f2; /*main bg color*/
  --grey-98: #fafafa;
  --small: 0.875rem; /* 14px */
  --regular: 1rem;/* 16px */
  --large: 1.25rem; /* 20px, text-primary*/
  --heading-h5: 1.25rem; /* 20px */
  --heading-h4: 1.5rem;  /* 24px */
  --heading-h3: 1.75rem;  /* 28px */
  --heading-h2: 2rem;  /* 32px */
  --heading-h1: 2.75rem; /* 44px */

  --wl-transition: 0.5s;
  --lh-body: 1.6;
  --lh-compact: 1.4; /* tables, lists, data-heavy */
  --lh-ui: 1.2;      /* nav, buttons, controls */
}

/* Utilities (use anywhere if needed) */
.lh-body { line-height: var(--lh-body); }
.lh-compact { line-height: var(--lh-compact); }
.lh-ui { line-height: var(--lh-ui); }

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--grey-20);
  font-size: var(--large);
  font-weight: 300;
  line-height: var(--lh-body);
}
html {
  scroll-behavior: smooth;
}
a {
  color: var(--green-35);
  font-weight: 500;
  text-decoration: none;
  transition: var(--wl-transition);
}
a:hover {
  color: var(--green-25);
  text-decoration: none;
}
small {
  font-weight: 300;
  font-size: var(--regular);
}
ul.content-list {
  list-style-type: square;
  line-height: var(--lh-compact);
}
ul.content-list li + li {
  margin-top: 10px;
}
strong, b {
  font-weight: 500;
}
.bg-light-gray {
  background-color: var(--grey-95);
}
p {
  margin-bottom: 20px;
}

/* # Headings */
h1, h2,h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.4;
}
h1.product-heading {
  font-size: var(--heading-h1);
  color: var(--green-35);
}
h2.product-heading {
  font-size: var(--heading-h2);
  color: var(--grey-20);
}
.page-heading {
  font-size: var(--heading-h1);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  color: var(--grey-20);
}
.subheading {
  font-size: var(--heading-h3);
  color: var(--green-20);
  margin-bottom: 20px;
}
.wl-text-primary {
  text-align: justify; 
}
@media (min-width: 1500px) {
  .container {
    max-width: 1280px;
  }
}
@media screen and (max-width: 768px) {
  h1.product-heading, h1.page-heading, h2.page-heading, h3.page-heading {
    font-size: var(--heading-h2);
  }
  h2.product-heading {
    font-size: var(--heading-h3);
  }
  .page-heading {
    margin-bottom: 20px;
  }
  .subheading {
    font-size: var(--heading-h4);
  }
  body {
    font-size: var(--regular);
  }
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
/* Badges */
.badge {
  color: var(--white);
	font-weight: 400;
}
/* Cards */
.card {
  border: solid 1px var(--grey-90);
  transition: var(--wl-transition);
}
.hover-card:hover {
  background-color: var(--green-95); 
}
.light-grey-card {
  background-color: var(--grey-98);
  border: solid 1px var(--grey-90);
}
.card-body {
  padding: 20px;
}
/* Product Cards */
.product-card {
  background-color: var(--grey-95);
  line-height: var(--lh-compact)
}
.product-card .product-card-description {
  padding: 15px 10px;
  color: var(--grey-20);
  font-weight: 300;
}
.product-card .product-card-description .subheading {
  margin-bottom: 10px;
}
.product-card .product-card-description p {
  margin-bottom: 0;
}
.product-card .product-card-image {
  overflow: hidden;
}
.product-card .product-card-image img {
  transition: var(--wl-transition);
}
.product-card:hover img {
  transform: scale(1.1);
}
/* Grey box */
.light-grey-box {
  background-color: var(--grey-95);
}

/* Buttons */
.btn {
  font-weight: 400;
  transition: var(--wl-transition);
  line-height: var(--lh-ui);
  padding: 10px 15px;
}
.wl-btn {
  background-color: var(--green-35);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 0;
}
.wl-btn:hover {
  background-color: var(--green-20);
  color: var(--white);
}
/* Available Info */
.available-info {
  color: var(--green-35);
  font-weight: 700;
  font-size: var(--regular);
  line-height: var(--lh-compact);
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 15px; 
}

/* Features Table */
.wl-features-table, .wl-products-table {
  margin-bottom: 0;
  line-height: var(--lh-compact);
}
.wl-features-table td,
.wl-products-table td {
  border-top: 1px solid var(--grey-80);   
  border-bottom: 1px solid var(--grey-80);  
  padding: 10px;
}
.wl-features-table td:first-child {
  width: 40%;
}
.wl-products-table th {
  border-bottom: 2px solid var(--green-35);
}
.wl-products-table td {
  vertical-align: middle;
}
.table-hover tbody tr:hover td {
  background: var(--grey-95);
}
@media (max-width: 768px) {
  .ingaas-features .col-lg-6:last-child .wl-features-table tr:first-of-type td {
    border-top: none;
  }
}
/* Google Icons */
.material-icon {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--white);
  transition: var(--wl-transition);
  z-index: 997;
  padding: 25px 0;
  border-bottom: 1px solid var(--grey-95);
}
#header.header-transparent {
  background: transparent;
  border-bottom: none;
}
#header.header-transparent .navbar .nav-item .nav-link {
  color: var(--white);
}
#header.header-shrink {
  padding: 5px 0px;
}
#header .logo {
  height: 57px;
}
@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
  #header .logo {
    height: 45px;
  }
}

/* 
#header .logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}
#header .logo .logo-icon {
  height: 55px;
  margin-right: 10px;
}
#header .logo .logo-main {
  font-family: "Roboto", sans-serif;
  color: black;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 2px;
}
#header .logo .logo-base {
  font-family: "Roboto Mono", monospace;
  color: black;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar .container-fluid {
  max-width: 1600px;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar .navbar-brand {
  margin-right: 20px;
}

.navbar .navbar-nav {
  justify-content: space-between;
  align-items: center;
}

.navbar .nav-item {
  padding: 20px 15px;
  flex-basis: auto;
  line-height: var(--lh-ui);
}

.navbar .nav-item.contact-us {
  padding: 0 0 0 15px;
}

.navbar .nav-item .nav-link {
  color: var(--grey-20);
  font-size: var(--regular);
  text-transform: uppercase;
  font-weight: 400;
  padding: 0;
}

.navbar .nav-link:hover {
  color: var(--green-35);
}

.navbar .nav-link i {
  font-size: 0.9em;
  vertical-align: middle;
}

/* .navbar .dropdown-header i {
  font-size: 1em;
  vertical-align: middle;
} */

/* Dropdown styles */
.navbar .dropdown-menu {
  border-radius: 0;
  padding: 15px;
}

.navbar .dropdown-menu .dropdown-header,
.navbar .dropdown-menu .dropdown-item {
  padding-left: 0;
  padding-right: 0;
}

.navbar .dropdown h5.dropdown-header {
  font-size: var(--regular);
  color: var(--grey-20);
  font-weight: 600;
  text-transform: uppercase;
}

.navbar .dropdown h6.dropdown-header {
  font-size: var(--regular);
  color: var(--grey-20);
  font-weight: 600;
}

.navbar .dropdown-menu .dropdown-item {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar .dropdown-menu .dropdown-item:hover {
  color: var(--green-25);
  background-color: transparent;
}

/* Mobile Styles (xs and sm) */
@media (max-width: 767.98px) {
  .navbar .navbar-nav {
    margin-top: 15px;
    max-height: 100vh;
    border-top: 1px solid var(--grey-95);
    align-items: flex-start;
  }
  .navbar .navbar-toggler {
    border: 2px solid var(--grey-80);
  }
  .navbar .nav-item,
  .navbar .nav-item.contact-us {
    padding: 10px 0;
  }

  .navbar .dropdown-menu {
    margin-top: 10px;
    padding: 10px 15px;
  }

  .navbar .dropdown-menu h5.dropdown-header {
    font-size: var(--regular);
  }

  .navbar .nav-item.dropdown.show {
    padding-bottom: 0;
  }

  .navbar .dropdown-menu .dropdown-submenu {
    display: none;
  }

  .navbar .dropdown-menu .submenu-header {
    display: inline-block;
    padding-right: 10px;
  }

  .navbar .dropdown-menu .submenu-toggle {
    display: inline-flex;
    align-items: center;
    width: 100%;
    color: var(--grey-20);
    cursor: default;
  }
}

/* Medium Screens (md) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar .nav-item {
    padding: 20px 10px;
  }

  .navbar .nav-item.contact-us a,
  .navbar .nav-item .nav-link {
    font-size: var(--small);
  }

  .navbar .dropdown {
    position: static;
  }

  .navbar .dropdown-menu {
    width: 100%;
    overflow-y: auto;
    top: 95%;
  }
}

/* Large Screens and up (lg, xl, xxl) */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown.show {
    background-color: var(--grey-20);
  }

  .navbar .nav-item.dropdown.show .dropdown-toggle {
    color: white;
  }

  h6.dropdown-header.subheader-margin {
    margin-top: 40px;
  }

  .navbar .dropdown-menu {
    min-width: 45em;
    top: 97%;
  }
}

/* Custom breakpoint for narrow desktop */
@media (max-width: 1200px) {
  .navbar .nav-item {
    flex-basis: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: relative;
}
.page-section,
.product-section {
  padding: 80px 0 0 0;
}
.padded-section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .page-section,
  .product-section {
    padding-top: 40px;
  }
  .padded-section {
    padding: 40px 0;
  }
}
.section-dark {
  background: #1b1b1b;
  color: #fff;
}

/* Fix for sticky navigation covering anchor links */
/* section[id] {
  scroll-padding-top: 250px;
} */

/* html.home-page {
  scroll-padding-top: 55px; 
} */
html.product-page {
  scroll-padding-top: 125px; 
}

/*--------------------------------------------------------------
# Section Navbar
--------------------------------------------------------------*/
.section-navbar {
  background-color: var(--grey-95);
  border-top: 1px solid var(--grey-90);
  border-bottom: 1px solid var(--grey-90);
  z-index: 996;
  top: 78px;
  padding: 0;
  line-height: var(--lh-ui);
}
@media (max-width: 768px) {
  .section-navbar {
    top: 66px;
  }
}
.section-navbar #navbarScrollspy {
  width: 100%; 
}
.section-navbar #navbarScrollspy .nav-item {
  padding: 20px 15px;
}
.section-navbar #navbarScrollspy .nav-item:first-child {
  padding-left: 0;
}
.section-navbar #navbarScrollspy .nav-item:last-child {
  padding-right: 0;
}
.section-navbar #navbarScrollspy .nav-link {
  color: var(--grey-20);
  font-size: var(--regular);
  text-transform: none;
}
.section-navbar #navbarScrollspy .divider {
  width: 2px;
  height: 1.5em;
  background-color: var(--grey-80);
  align-self: center;
  flex: 0 0 auto;
}

.section-navbar #navbarScrollspy .nav-link.active,
.section-navbar #navbarScrollspy .nav-link:hover {
  color: var(--green-35);
}
@media (max-width: 1100px) {
  .section-navbar {
    overflow-x: auto;
    overflow-y: hidden;
  }  
  .section-navbar #navbarScrollspy {
    flex-wrap: nowrap;
    min-width: max-content;
    /* margin-top: 0; */
  }
  .section-navbar #navbarScrollspy .nav-item {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .section-navbar #navbarScrollspy .nav-item:last-child {
    padding-right: 30px;
  }
}
@media (max-width: 500px) {
  .section-navbar #navbarScrollspy .nav-link {
    font-size: var(--small);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: var(--grey-20);
  color: var(--white);
  line-height: var(--lh-compact);
}
.breadcrumbs ol {
  display: flex;
  /* flex-wrap: wrap; */
  list-style: none;
  margin: 0;
  padding-left: 0;
  font-size: var(--regular);
  font-weight: 400;
}
.breadcrumbs .breadcrumb-item a {
  color: var(--white);
}
.breadcrumbs .breadcrumb-item a:hover {
  color: var(--green-35);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}
.breadcrumbs ol li.breadcrumb-item.active {
  color: var(--green-35);
}

@media (max-width: 500px) {
  .breadcrumbs ol {
    font-size: var(--small);
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: nowrap;
  }
  .breadcrumbs ol li {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .breadcrumbs ol li:last-of-type {
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Landing Page Sections
--------------------------------------------------------------*/
/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  max-height: 1000px;
  background: url("../images/header-bg-177326625_l.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}
.hero:before {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6));
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.hero .hero-text {
  margin-bottom: 100px;
  max-width: 1600px;
  padding-left: 30px;
  padding-right: 30px;
}
.hero .hero-text .lesser-width {
  width: 60%;
}
.hero .hero-text h1 {
  margin: 0;
  color: var(--white);
  font-size: 36px;
  font-weight: 300;
}
.hero .hero-text h1 b {
  font-weight: 500;
}
@media (max-width: 1400px) {
  .hero .hero-text .lesser-width {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .hero {
    background: url("../images/header-bg-177326625_s.jpg") top center no-repeat;
    background-size: cover;
  }
  .hero .hero-text .lesser-width {
    width: 100%;
  }
  .hero .hero-text h1 {
    font-size: var(--heading-h2);
  }
}
@media (max-height: 500px) {
  .hero {
    height: 120vh;
  }
}
.hero .btn-about {
  display: inline-block;
  border-radius: 0;
  margin-top: 30px;
  color: var(--grey-20);
  background: var(--white);
  border: 2px solid var(--white);
}
.hero .btn-about:hover {
  background: transparent;
  border-color: #fff;
  color: var(--white);
}
/* Product Groups */
.product-groups .product-group-icon {
  width: 125px;
  height: auto;
}
.product-groups h3.subheading {
  margin-top: 15px;
  margin-bottom: 0;
}
.product-groups .section-text {
  width: 75%; 
  margin: auto;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .product-groups .product-group-icon {
    width: 100px;
  }
}
@media (max-width: 768px) {
  .product-groups h3.subheading {
    margin-top: 5px;
  }  
  .product-groups .section-text {
    width: 100%; 
  }
}
/* Product Categories */
.product-categories .section-text {
  margin-bottom: 15px;
}
.product-categories h2.product-cat-heading {
  font-size: var(--heading-h4);
  color: var(--grey-20);
  font-weight: 300;
  margin-top: 15px;
  margin-bottom: 0;
}
.product-categories .product-cat-img {
  border-radius: 50%;
  max-width: 225px;
}
@media (max-width: 992px) {
  .product-categories .product-cat-img {
    max-width: 150px;
  }
  .product-categories h2.product-cat-heading {
    font-size: var(--heading-h5);
  }
}
@media (max-width: 768px) {
  .product-categories h2.product-cat-heading {
    margin-top: 5px;
  }
}

#featuredProducts {
  scroll-margin-top: 50px;
}

/* Main applications */
.main-applications .application-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: var(--lh-compact);
}
.main-applications .application-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
}
.main-applications .application-box .application-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-weight: 500;
  text-align: center;
  height: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}
  @media (min-width: 768px) and (max-width: 992px) {
  .main-applications .application-box .application-name {
      height: 50%;
  }
}

/* Scientific Community */
.sci-research .section-text {
  font-size: var(--heading-h4);
}
.sci-research .section-text p:last-child {
  margin-bottom: 0;
}
.sci-research .sci-magazines ul {
  list-style-type: none;
  font-weight: 700;
  padding-left: 0;
}
.sci-research .sci-research-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.wl-cred-box {
  text-align: center;
}
.wl-cred-content {
  display: flex; 
  justify-content: left; 
  gap: 20px; 
  padding: 0 100px;
}
.wl-cred-number {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}
.wl-cred-text {
  font-size: var(--large);
  font-weight: 400;
  text-transform: uppercase;
}
.journal-collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 15px 25px;
  margin-top: 15px;
}

.journal-collage span {
  display: inline-block;
  vertical-align: baseline;
  margin-bottom: 8px;
}
.journal-collage .science-advances { font-family: 'Georgia', serif; font-weight: 500; font-size: 22px; color: #1a1a1a; }
.journal-collage .physical-review { font-family: 'Jost', sans-serif; font-weight: 400; font-size: 20px; color: #37465a; }
.journal-collage .review-sci-instr { font-family: 'Arial', sans-serif; font-weight: 700; font-size: 20px; color: #2c2c2c; }
.journal-collage .physical-review-applied { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 18px; color: #3a3a3a; }
.journal-collage .laser-physics { font-family: 'Arial Black', sans-serif; font-weight: 800; font-size: 20px; color: #000; text-transform: uppercase; }
.journal-collage .bio-optics-express { font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 20px; color: #222; line-height: 1.2; text-align: left; }
.journal-collage .bio-optics-express-small { text-transform: uppercase; letter-spacing: 1.5px; }
.journal-collage .optics-letters { font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 18px; color: #444; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .wl-cred-number { font-size: 48px; }
  .sci-research .section-text { font-size: 16px; }
  .journal-collage { gap: 10px 15px; }
  .journal-collage span { font-size: 14px !important; }
}
@media (max-width: 1200px) {
  .wl-cred-content {
    padding: 0 50px;
  }
}
@media (max-width: 992px) {
  .wl-cred-content {
    padding: 0 100px;
  }
}
  @media (max-width: 576px) {
    .wl-cred-content {
      padding: 0 50px;
    }
}

/*--------------------------------------------------------------
# Product Pages Elements
--------------------------------------------------------------*/

/* Product Header */
#time-integrating-detectors .product-head .row {
  min-height: 200px;
}
@media (min-width: 768px) {
  #time-integrating-detectors .product-head .row {
    min-height: 300px;
  }
}
/* TODO for all  */
@media (min-width: 992px) {
  #WL-IPD4B_product-page .product-head .row,
  #WL-FlexDDS-NG-DUAL_product-page .product-head .row,
  #WL-FlexDDS-NG_product-page .product-head .row {
    min-height: 375px;
  }
}

.product-head .product-head-info {
  padding-top: 30px;
  padding-bottom: 30px;
}
.product-head .product-head-media {
  position: relative;
}
/* Product Title with Availabity Badge */
.product-title-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.product-title-row .product-heading {
	line-height: var(--lh-ui);
}
.product-title-row .availability-badge {
  display: inline-flex;
  background-color: var(--green-35);
}

/* # Content Box: Key Feat/Prod.Apps */
.content-box {
  padding: 20px;
  line-height: var(--lh-compact);
}
.content-box .content-items {
list-style: none;
padding-left: 0;
margin: 0;
}
.content-box .content-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}
.content-box .content-item-icon {
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--green-20);
  flex-shrink: 0;
}
.content-box .content-item-text {
  align-self: flex-start;
}
.content-box .content-item:last-child {
margin-bottom: 0;
}
.feature-items {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 10px;
}
.feature-item .content-item-icon {
  width: 50px;
  height: 50px;
}
.feature-item .content-item-text {
  line-height: 1.4;
}
@media (max-width: 768px) {
  .content-box .content-item-icon {
    width: 25px;
    height: 25px;
  }
  .feature-items {
    flex-direction: column;
  }
  .feature-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: flex-start;  
  }
  .feature-item .content-item-icon {
    margin-bottom: 0;
  }
}
/* publications box */
.publications-box {
  background-color: var(--green-20);
  color: var(--white);
  font-weight: 300;
}
.publications-box .content-item-icon {
  background-color: var(--white);
}

/* #Quote Box */
.wl-quote-box {
  padding: 20px;
  margin-top: 40px;
  background-color: var(--green-35);
  color: var(--white);
}
.wl-quote-author {
  line-height: 1.4;
}

/* #Quote Call To Action Box  */
.quote-cta-xl {
  position: fixed;
  z-index: 1;
  top: 626px;
  right: -120px;
  background-color: var(--green-35);
  transition: var(--wl-transition);
}
.quote-cta-xl a {
  color: var(--white);
}
.quote-cta-xl .quote-icon {
  font-size: var(--heading-h1);
  padding: 10px;
}
.quote-cta-xl .quote-text {
  padding: 10px;
  text-align: left;
  display: table-cell;
  vertical-align: middle;
  font-size: var(--large);
}
.quote-cta-xl:hover {
  right: 0;
  background-color: var(--green-25);
}

/* #Note Box */
.note-box {
  padding: 20px;
  margin-top: 40px;
  background-color: var(--green-35);
  color: var(--white);
}
.note-box a {
  color: var(--white);
}
.note-box a:hover {
  color: var(--grey-80);
}

/* #Download Boxes */
.download-box {
  padding: 10px 20px;
  line-height: var(--lh-compact);
}
.download-box:not(:last-of-type) {
  margin-bottom: 20px;
}
.download-box .download-name {
  font-weight: 500;
}
@media (max-width: 768px) {
  .download-box {
    text-align: center;
    padding: 10px;
  }
}
/* #News Boxes */
.wl-news-box {
  border: solid 1px var(--grey-90);
}
.wl-news-box:not(:last-of-type) {
  margin-bottom: 35px;
}
.wl-news-box .wl-news-box-header {
  padding: 7.5px 20px;
  font-size: var(--regular);
  color: var(--grey-40);
  font-weight: 400;
}
.wl-news-box .wl-news-box-body {
  padding: 10px 20px;
}

/* #Image Figures */
.wl-figure {
  background-color: var(--grey-95);
  border-radius: 0px;
  border: solid 1px var(--grey-90);
  line-height: var(--lh-compact);
}
figure {
  margin-bottom: 0;
}
.wl-caption {
  padding: 10px 10px;
}

/* # Similar Products Carousel */
#carouselSimilarProducts .carousel-control-prev,
#carouselSimilarProducts .carousel-control-next {
  width: 2%;
  filter: invert(100%);
}
#carouselSimilarProducts .carousel-control-prev {
  left: -25px;
}
#carouselSimilarProducts .carousel-control-next {
  right: -25px;
}
#carouselProductModal .carousel-control-prev,
#carouselProductModal .carousel-control-next,
#carouselHeaderPhoto .carousel-control-prev,
#carouselHeaderPhoto .carousel-control-next {
  filter: invert(100%);
}
.LDC10D-features ul {
  padding-left: 20px;
}
/* Publications */
.publications .publication-card {
  line-height: var(--lh-compact);
}
.publications .publication-title, 
.publications .publication-link {
  color: var(--green-20);
}
.publications .publication-card {
  margin-bottom: 20px;
}
.publications .publication-badge {
  background-color: var(--green-20);
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Other webpages
--------------------------------------------------------------*/
/* #About Wieserlabs */
#about-img {
  margin: 0 0 25px 25px;
  max-width: 45%;
  position: relative;
  top: 10px;
}
@media (max-width: 768px) {
  #about-img {
    max-width: 100%;
    top: 0;
    margin: 0 0 10px 0;
  }
}

/* #Contact Page */
.contact .contact-box {
  padding: 40px 10px;
  text-align: center;
  display: block;
}
.contact .contact-emails .contact-box:hover {
  background-color: var(--grey-80);
}
.contact .contact-emails .contact-box:hover .contact-icon {
  color: var(--green-25);
}
.contact .contact-emails .contact-icon {
  color: var(--green-35);
  transition: var(--wl-transition);
  margin-bottom: 20px;
}
.contact .contact-emails .contact-box h3 {
  font-size: var(--heading-h5);
  font-weight: 500;
  margin: 0;
}
.contact .contact-emails .contact-box p {
  padding: 0;
  margin-bottom: 0;
  font-weight: 300;
  color: var(--grey-20);
}

.contact .email-form input,
.contact .email-form textarea {
  font-size: var(--regular);
  padding: 10px 15px;
}
.contact .email-form input:focus,
.contact .email-form textarea:focus {
  border-color: var(--grey-10);
}
.contact .email-form .btn {
  margin-top: 0;
}
.contact .sent-message {
  font-size: var(--large);
  color: var(--white);
  font-weight: 500;
  margin: 20px 25px 0 25px;
  padding: 10px;
}
.contact .sent-message.message-success {
  background-color: var(--green-35);
}
.contact .sent-message.message-fail {
  background-color: red;
}

/* # Custom Development */
.highlight-card {
  border: 1px solid var(--green-35);
}
.highlight-card:hover {
  background-color: #ecf9ec;
}
.highlight-card .card-body i,
.highlight-card .card-body .card-title {
  color: var(--green-20);
}
.custom-dev .area-card h3 {
  font-size: var(--heading-h4);
  color: var(--grey-40);
  font-weight: 500;
  margin-bottom: 0;
}
.custom-dev .area-card .card-title-details {
  font-size: var(--large);
  color: var(--grey-20);
  font-weight: 300;
}
.custom-dev .area-card {
  min-height: 175px;
}
@media (max-width: 768px) {
  .custom-dev .area-card h3 {
    font-size: var(--heading-h5);
  }
  .custom-dev .area-card .card-title-details {
    font-size: var(--regular);
  }
  .custom-dev .area-card {
    min-height: 125px;
  }
}
/* Other webpages */
#error404 p {
  text-align: center;
  font-size: var(--heading-h3);
}
#impressum, #datenschutz {
  scroll-margin-top: 100px;
}
/* #Outputs */
.outputs .card .card-title {
  font-weight: 500;
  text-align: center;
}
.outputs .card .card-text {
  font-size: var(--regular);
}

/*--------------------------------------------------------------
# Major sections: Product Modal
--------------------------------------------------------------*/

.wl-modal-link {
  position: relative;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.wl-modal-link .wl-modal-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: var(--wl-transition);
  opacity: 0;
  background: rgba(242, 242, 242, 0.5); /*grey-20 */
}
.wl-modal-link .wl-modal-hover:hover {
  opacity: 1;
}
.wl-modal-link .wl-modal-hover .wl-modal-hover-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-modal-hover-content-icon {
  display: inline-block;
  width: 100px;        
  height: 100px;
  background-color: var(--grey-20);
}
.wl-modal-link .wl-modal-hover .wl-modal-hover-content h3,
.wl-modal-link .wl-modal-hover .wl-modal-hover-content h4 {
  margin: 0;
}
.wl-modal .modal-content {
  text-align: center;
}
.wl-modal .modal-title {
  font-weight: 500;
}

@media (max-width: 1200px) {
  .wl-modal-hover-content-icon {
    width: 75px;
    height: 75px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1200px;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  .modal-dialog {
    max-width: 800px;
  }
}

/*--------------------------------------------------------------
# Major sections: Waveforms 
--------------------------------------------------------------*/

.waveform-thumbnails .wf-thumbnail .wf-link {
  position: relative;
  display: block;
  /*max-width: 400px;*/
  margin: 0 auto;
  cursor: pointer;
  background-color: black;
}
.waveform-thumbnails .wf-thumbnail .wf-link .wf-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: var(--wl-transition);
  opacity: 0;
  background: rgba(32, 96, 32, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.waveform-thumbnails .wf-thumbnail .wf-link .wf-hover:hover {
  opacity: 1;
}
.waveform-thumbnails .wf-thumbnail .wf-link .wf-hover .wf-hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 20px;
}
.waveform-thumbnails .wf-thumbnail .wf-link .wf-hover .wf-hover-content i {
  font-size: 50px;
}
.waveform-thumbnails * {
  z-index: 2;
}

.waveforms-carousel .modal-dialog {
  max-width: 50%;
}
.waveforms-carousel .modal-content {
  text-align: center;
  border-radius: 0;
  padding: 20px 0;
  background-color: #000;
}
.waveforms-carousel img {
  max-height: 425px;
}
.wf-carousel-caption {
  max-width: 613px;
  color: var(--white);
  margin: auto;
  padding: 20px;
}
#waveformsCarousel {
  min-height: 725px;
}
@media (max-width: 1200px) {
  .waveforms-carousel .modal-dialog {
    max-width: 85%;
  }
}

.flexdds-components .card-text {
  color: var(--grey-20);
  font-weight: 300;
}
@media (max-width: 768px) {
  .flexdds-components .col-md-4:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Major sections: Footer Section
--------------------------------------------------------------*/
#footer {
  color: var(--white);
  background: var(--grey-10);
  margin-top: 80px;
  font-size: var(--regular);
  line-height: var(--lh-compact);
}
#footer .footer-top {
  background: var(--grey-20);
}
#footer .logo {
  line-height: 0.75;
  margin-bottom: 20px;
}
#footer .logo .logo-main {
  font-family: "Roboto", sans-serif, Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: var(--green-35);
  text-transform: uppercase;
}
#footer .logo .logo-base {
  font-family: "Roboto Mono", monospace, Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 300;
}
#footer .footer-heading { 
  color: var(--white);
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  #footer .footer-top .footer-links ul li {
    margin-bottom: 5px;
  }
}
#footer .footer-top .footer-links ul li:last-child {
  margin-bottom: 0;
}
#footer .footer-top .footer-links ul i {
  color: var(--white);
}
#footer .footer-top .footer-links ul li a {
  color: var(--white);
  font-weight: 400;
  display: inline-block;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--green-35);
}
#footer .footer-contact a {
  color: var(--white);
  font-weight: 300;
}
#footer .footer-contact a:hover {
  color: var(--green-35);
}

#error404 #footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}