/*--------------------------------------------------------------
# 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: #2d862d; /* 35% */
  --dark-green: #206020;  /* 25% */
  --darker-green:  #194d19; /* 20% */
  --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*/
  --small: 0.875rem;
  --regular: 1rem;
  --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 */
}

/*--------------------------------------------------------------
# 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: 1.6;
}

html {
  scroll-behavior: smooth;
}

a {
  color: var(--green);
  font-weight: 500;
}
a:hover {
  color: var(--dark-green);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.5;
}
h1 {
  font-size: var(--heading-h1);
  color: var(--grey-20);
}
h2 {
  font-size: var(--heading-h2);
  color: var(--green);
}
h3 {
  font-size: var(--heading-h1);
  color: var(--grey-20);
}
h3.wl-side-heading {
  font-size: var(--heading-h5);
  color: var(--darker-green);
  text-transform: uppercase;
  padding-left: 20px;
}
h4 {
  font-size: var(--heading-h5);
  color: var(--darker-green);
}
@media (max-width: 768px) {
  h1 {
    font-size: var(--heading-h2);
  }
  h2 {
    font-size: var(--heading-h3);
  }
}

.wl-text-primary {
  font-size: var(--large);
}
small {
  font-weight: 300;
}
ul {
  list-style-type: square;
}
.product-section ul li:not(:last-child),
.page-section ul li:not(:last-child) {
  padding-bottom: 5px;
}
strong,
b {
  font-weight: 500;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1280px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--white);
  transition: ease-out 0.5s;
  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-nav {
  justify-content: space-between;
}
.navbar .nav-item {
  padding: 20px 15px;
  flex-basis: auto;
  line-height: 1;
}
.navbar .nav-item .nav-link {
  color: var(--grey-20);
  font-size: var(--regular);
  text-transform: uppercase;
  font-weight: 400;
  transition: 0.3s;
  padding: 0;
}
.navbar .nav-link:hover {
  color: var(--green);
}
@media (min-width: 769px) and (max-width: 992px) {
  .navbar .nav-item .nav-link {
    font-size: var(--small);
  }
}
.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(--dark-green);
  background-color: transparent;
}

/* Mobile Screen Styles */
@media (max-width: 768px) {
  .navbar .navbar-nav {
    margin-top: 15px;
    max-height: 100vh;
    border-top: 1px solid var(--grey-95);
  }
  .navbar .nav-item {
    padding: 10px 0;
  }
  .navbar .navbar-toggler {
    border-color: var(--green);
    padding: 7.5px 10px;
  }
  .navbar .navbar-toggler .navbar-toggler-icon {
    color: var(--green);
    font-size: var(--heading-h3);
    width: auto;
    height: auto;
  }
  .navbar .dropdown-menu h5.dropdown-header {
    font-size: var(--regular);
  }
  .navbar .dropdown-menu {
    border: none;
    margin-top: 0;
    padding: 10px 15px;
  }
  .navbar .nav-item.dropdown.show {
    padding-bottom: 0;
  }

  .navbar .dropdown-menu .dropdown-submenu {
    display: none;
  }
  .navbar .dropdown-menu .dropdown-item,
  .navbar .dropdown-menu .submenu-header {
    padding-left: 15px;
  }

  .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 Screen Styles */
@media (min-width: 768px) and (max-width: 992px) {
  .navbar .nav-item {
    padding: 20px 10px;
  }
  .navbar .dropdown {
    position: static;
  }
  .navbar .dropdown-menu {
    width: 100%;
    overflow-y: auto;
    top: 95%;
  }
  .navbar .dropdown-menu.dropdown-menu-right {
    right: 0;
  }
}
/* Large and Medium Screen Styles */
@media (min-width: 769px) {
  .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;
  }
}
/* Large Screen Styles */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    min-width: 45em;
    top: 97%;
  }
  .navbar .dropdown-menu.dropdown-menu-right {
    right: -50px;
  }
}
@media (max-width: 1100px) {
  .navbar .nav-item {
    flex-basis: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: relative;
}
.page-section,
.product-section {
  padding: 80px 0 0 0;
}
@media screen and (max-width: 768px) {
  .page-section,
  .product-section {
    padding-top: 40px;
  }
}
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}
.section-title h1,
.section-title h2,
.section-title h3 {
  color: var(--grey-20);
  font-size: var(--heading-h1);
}
@media screen and (max-width: 768px) {
  .section-title {
    padding-bottom: 20px;
  }
  .section-title h1,
  .section-title h2,
  .section-title h3 {
    font-size: var(--heading-h2);
  }
}
.landing-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .landing-section {
    padding: 40px 0;
  }
}
.section-dark {
  background: #1b1b1b;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .m-b-xs {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--grey-20);
  min-height: 40px;
  color: var(--white);
}
@media (max-width: 992px) {
  .breadcrumbs {
    padding: 5px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 7.5px 0;
  margin: 0;
  font-size: var(--regular);
  font-weight: 300;
}
.breadcrumbs ol a {
  color: var(--white);
}
.breadcrumbs ol a:hover {
  color: var(--green);
  transition: 0.3s;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--green);
  content: "/";
}
@media (max-width: 500px) {
  .breadcrumbs ol {
    font-size: var(--small);
  }
  .breadcrumbs ol li + li {
    padding-left: 5px;
  }
  .breadcrumbs ol li + li::before {
    padding-right: 5px;
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  font-weight: 400;
  transition: 0.3s;
}
.btn.btn-square {
  border-radius: 0;
}

.btn.header-btn {
  background-color: var(--grey-20);
  color: var(--white);
  margin-top: 10px;
  font-size: var(--large);
}
.btn.header-btn:hover {
  background-color: var(--grey-40);
}

.wl-btn {
  background-color: var(--green);
  color: var(--white);
  text-transform: uppercase;
}
.wl-btn:hover {
  background-color: var(--darker-green);
  color: var(--white);
}

.quote-cta-xl {
  position: fixed;
  z-index: 1;
  top: 502px;
  right: -120px;
  background-color: var(--green);
  transition: 0.5s;
}
.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(--dark-green);
}

/*--------------------------------------------------------------
# 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;
  transition: 0.5s;
  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, Categories, Featured Products, Applications, Scientific Research
--------------------------------------------------------------*/

.product-groups .product-group-icon {
  width: 125px;
  height: auto;
}
.product-groups h3.product-group-heading {
  font-size: var(--heading-h3);
  color: var(--darker-green);
  font-weight: 500;
  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.product-group-heading {
    font-size: var(--heading-h5);
    margin-top: 5px;
  }  
  .product-groups .section-text {
    width: 100%; 
  }
}

.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;
}
.featured-products .product-element {
  margin-bottom: 30px;
}
.featured-products .product-element .product-description p {
  margin-bottom: 0;
}
.featured-products .product-element .product-description h3 {
  font-weight: 500;
}

.product-applications .content {
  padding: 40px 20px 20px 0;
}
.product-applications .application {
  margin-bottom: 25px;
}
.product-applications .app-icon {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 10px;
  left: -8px;
}
.product-applications h4 {
  color: var(--grey-20);
  font-size: var(--heading-h4);
  font-weight: 500;
}

@media (max-width: 768px) {
  .product-applications {
    text-align: center;
  }

  .product-applications .app-icon {
    display: none;
  }
}

.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%;
}

/*--------------------------------------------------------------
# Product Header
--------------------------------------------------------------*/
.bg-light-gray {
  background-color: var(--grey-95);
}
.product-head .product-title {
  padding-top: 30px;
  padding-bottom: 30px;
}
.available-info {
  color: var(--green);
  font-weight: 700;
  font-size: var(--regular);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .available-info {
    position: absolute;
  }
}

/*--------------------------------------------------------------
# Product Features
--------------------------------------------------------------*/
.product-features .features-table {
  margin-bottom: 0;
}
.product-features .features-table td {
  padding: 10px 10px 10px 0;
}
.product-features .features-table td:first-child {
  width: 40%;
}
@media (min-width: 992px) {
  .product-features .features-table tr:last-child {
    border-bottom: 1px solid #dee2e6;
  }
}

/*--------------------------------------------------------------
# Quotes and Notes
--------------------------------------------------------------*/

.wl-quote-box {
  padding: 0.5em 1em;
  margin-top: 40px;
  margin-left: 23px;
  background-color: var(--green);
  color: #fff;
}
.wl-quote-body {
  color: #fff;
  font-size: var(--large);
}

.note-box {
  padding: 20px 20px;
  margin-top: 40px;
  background-color: var(--green);
  color: var(--white);
}
.note-box a {
  color: var(--white);
  transition: 0.3s;
}
.note-box a:hover {
  color: var(--grey-80);
}

/*--------------------------------------------------------------
# Downloads Boxes
--------------------------------------------------------------*/

.download-box {
  padding: 10px 20px;
}
.download-box:not(:last-of-type) {
  margin-bottom: 20px;
}
.download-box .dl-name {
  font-weight: 700;
  color: var(--grey-40);
}

@media only screen and (max-width: 768px) {
  .download-box {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .download-box .dl-btn {
    margin-top: 5px;
  }
  .app-notes .download-box .col-md-9 {
    text-align: left;
  }
  .app-notes .download-box .col-md-3 {
    text-align: right;
  }
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

.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);
}
.wl-news-box .wl-news-box-body {
  padding: 10px 20px;
}

/*--------------------------------------------------------------
# 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: 0.5s;
  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 {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: var(--grey-20);
}

.wl-modal-link .wl-modal-hover .wl-modal-hover-content i {
  margin-top: -12px;
}

.wl-modal-link .wl-modal-hover .wl-modal-hover-content h3,
.wl-modal-link .wl-modal-hover .wl-modal-hover-content h4 {
  margin: 0;
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1200px;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  .modal-dialog {
    max-width: 800px;
  }
}
.wl-modal .modal-content {
  text-align: center;
}

.wl-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  color: var(--grey-20);
  /* z-index: 1; */
}
.wl-modal .close-modal:hover {
  color: var(--grey-40);
}

/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/

table.wl-products-table th {
  border-top: none;
  border-bottom: 2px solid var(--green);
}
.table-hover tbody tr:hover td {
  background: var(--grey-95);
}

/*--------------------------------------------------------------
# Thumbnails 
--------------------------------------------------------------*/

.wl-figure {
  background-color: var(--grey-95);
  border-radius: 0px;
}
figure {
  margin-bottom: 0;
}
.wl-caption {
  padding: 10px 10px;
  font-size: var(--regular);
}

/*--------------------------------------------------------------
# Products Wrapper
--------------------------------------------------------------*/

.product-element {
  background-color: var(--grey-95);
  display: block;
}
.product-image {
  overflow: hidden;
}
.product-image img {
  transition: all ease 0.5s;
}
.product-element:hover img {
  transform: scale(1.1);
}
.product-description {
  padding: 15px 10px;
}
.product-description h3 {
  color: var(--darker-green);
  font-size: var(--heading-h3);
}
.product-description p {
  font-weight: 300;
  color: var(--grey-20);
  font-size: var(--large);
}

@media (max-width: 768px) {
  .product-description h3 {
    font-size: var(--heading-h4);
  }
  .product-description p {
    font-size: var(--large);
  }
}

/*--------------------------------------------------------------
# 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: all ease 0.5s;
  opacity: 0;
  background: rgba(45, 134, 45, 0.75);
}
.waveform-thumbnails .wf-thumbnail .wf-link .wf-hover:hover {
  opacity: 1;
}
.waveform-thumbnails .wf-thumbnail .wf-link .wf-hover .wf-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: white;
}
.waveform-thumbnails .wf-thumbnail .wf-link .wf-hover .wf-hover-content i {
  margin-top: -10px;
}
.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%;
  }
}

/*--------------------------------------------------------------
# About page
--------------------------------------------------------------*/

#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;
  }
}

/*--------------------------------------------------------------
# Similar Products Carousel
--------------------------------------------------------------*/
#carouselSimilarProducts .carousel-product {
  background-color: var(--grey-95);
}

#carouselSimilarProducts .carousel-product .carousel-description {
  padding: 15px 10px;
  font-size: var(--large);
  color: var(--grey-20);
  font-weight: 300;
}
#carouselSimilarProducts .carousel-product h4 {
  font-size: var(--heading-h3);
  font-weight: 700;
  color: var(--darker-green);
  transition: 0.3s;
}
#carouselSimilarProducts .carousel-product .carousel-img {
  overflow: hidden;
}
#carouselSimilarProducts .carousel-product .carousel-img img {
  transition: all ease 0.5s;
}
#carouselSimilarProducts .carousel-product:hover img {
  transform: scale(1.1);
}
#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;
}

@media (max-width: 768px) {
  #carouselSimilarProducts h4 a {
    font-size: var(--heading-h4);
  }
}


#carouselProductModal .carousel-control-prev,
#carouselProductModal .carousel-control-next,
#carouselHeaderPhoto .carousel-control-prev,
#carouselHeaderPhoto .carousel-control-next {
  filter: invert(100%);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact .contact-box {
  background-color: var(--grey-95);
  padding: 40px 10px;
  text-align: center;
  display: block;
  transition: 0.5s;
}
.contact .contact-emails .contact-box:hover {
  background-color: var(--grey-80);
}
.contact .contact-emails .contact-box:hover .contact-icon {
  color: var(--dark-green);
}
.contact .contact-emails .contact-icon {
  color: var(--green);
  transition: 0.5s;
  margin-bottom: 20px;
}
.contact .contact-emails .contact-box h3 {
  font-size: var(--heading-h5);
  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 .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);
}
.contact .sent-message.message-fail {
  background-color: red;
}

/*--------------------------------------------------------------
# Custom Development
--------------------------------------------------------------*/
.custom-main {
  margin-top: 60px;
}
.custom-main p {
  margin-bottom: 40px;
  font-size: var(--heading-h4);
}
.custom-area {
  background-color: var(--grey-95);
  padding: 20px;
  min-height: 182px;
  /* margin-bottom: 30px; */
}
.custom-area h3 {
  font-size: var(--heading-h3);
  color: var(--grey-40);
  font-weight: 400;
  margin-bottom: 0;
}
.custom-area small {
  font-size: var(--large);
}
.custom-area ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.custom-area.cta {
  background-color: var(--green);
  transition: 0.5s;
}
.custom-area.cta:hover {
  background-color: var(--dark-green);
}
.custom-area.cta i {
  color: var(--white);
  font-size: 60px;
  position: absolute;
  top: 20px;
  left: 35px;
}
.custom-area.cta h3 {
  color: var(--white);
  text-align: right;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--white);
  background: var(--grey-10);
  margin-top: 80px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--grey-15);
}
#footer .footer-top .footer-address {
  margin-bottom: 30px;
}
#footer .logo {
  line-height: 0.5;
  margin-bottom: 20px;
}
#footer .logo .logo-main {
  font-family: "Roboto", sans-serif, Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: var(--green);
  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 h4 {
  color: hsl(0, 0%, 70%);
}
#footer .footer-top .footer-links {
  margin-bottom: 20px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: var(--white);
  font-size: var(--regular);
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  font-size: var(--regular);
  color: var(--white);
  transition: 0.3s;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--green);
}
#footer .footer-contact a {
  color: var(--white);
  font-size: var(--large);
  font-weight: 300;
  transition: 0.3s;
}
#footer .footer-contact a:hover {
  color: var(--green);
}
#footer .copyright {
  font-size: var(--regular);
}
#error404 #footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#error404 h1 {
  font-size: var(--heading-h1);
  text-transform: uppercase;
}
#error404 h2, #error404 h3 {
  font-weight: normal;
  font-size: var(--heading-h3);
}


#impressum, #datenschutz {
  scroll-margin-top: 100px;
}

/* .show > .dropdown-menu {
  max-height: 900px;
  visibility: visible;
}

.dropdown-menu {
  display: block;
  max-height: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  overflow: hidden;
} */
