@charset "utf-8";
html {
  font-size: 16px;  /* Explicit base size */
}
/*below to keep footer at the bottom of the page*/
html {
  min-height: 100%;
}
body {
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > .container,
body > .container-wide,
body > .jumbotron {
  flex: 1 0 auto;
}
body > div:last-of-type {
  margin-top: auto;
}
/*end of the footer fix*/
.myhead {
    background-color:#00867E;
    background-color:#009F93;
    padding-bottom: 0px;
    margin-left:0px;
    margin-bottom:0px;
}
.imghead {
    display:block;
    margin: 0 auto;
    padding-bottom: 0rem;
    margin-bottom:0rem;
    max-width: 100%;
    
}
.main-title {
  font-family: 'Varela Round', sans-serif;
  font-size: 5.0rem;
  font-weight: 600;
  line-height: 1.1;
  padding-left: 4rem;
  padding-right: 4rem;
}
/* Responsive font sizes for main-title */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 3rem;
  }
}
@media (max-width: 576px) {
  .main-title {
    font-size: 1.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 6rem;
  }
}
.main-lead {
  font-family: 'Varela Round', sans-serif;
  font-size: 1.6rem;
  font-weight: 450;
  line-height: 1.0;
  padding-left: 4rem;
  padding-right: 4rem;
  font-style: italic;
}
@media (max-width: 576px) {
  .main-lead {
    font-size: 1.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.footergeneral {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	color: #F0F0F0;
	font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-style: normal;
	font-weight: 400;
	background-color: #00867E; /*was #00867E or lighter #009F93 */
	width:100%;
  line-height:1.2;
  bottom:0;
	/*position:fixed;*/
}
/*below to add spacing between rows on small screens*/
/*was 787, I added 992 for spacing on md screen*/
@media (max-width: 991px) {
  .row > [class*='col-'] {
    margin-bottom: 1.0rem;
  }
  .row > [class*='col-']:last-child {
    margin-bottom: 1.0rem;
  }
  /* Additional spacing for cards and images on small screens */
  .card {
    margin-bottom: 1.5rem;
  }
  .card-img-top {
    margin-bottom: 1.0rem;
  }
}
/* show dropdown on hover for larger screens (avoid on mobile) */
@media (min-width: 576px) {
  .navbar .dropdown {
    position: relative;
  }

  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
  }

  .navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.35rem;
    left: 0;
    right: 0;
    height: 0.35rem;
  }
}

/* second-level submenu support in Bootstrap 4 dropdowns */
.navbar .dropdown-submenu {
  position: relative;
}

.navbar .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -0.1rem;
  display: none;
}

.navbar .submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .submenu-caret {
  margin-left: 1rem;
  font-size: 0.95rem;
  line-height: 1;
}

@media (min-width: 576px) {
  .navbar .dropdown-submenu:hover > .dropdown-menu,
  .navbar .dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .navbar .dropdown-submenu > .dropdown-menu {
    position: static;
    float: none;
    margin-left: 1rem;
    border: 0;
    box-shadow: none;
  }

  .navbar .dropdown-submenu > .dropdown-menu.show {
    display: block;
  }
}

/* Apply small-screen card spacing to specific rows on all screen sizes */
.row-bottom-spacing .card {
  margin-bottom: 1.5rem;
}

.row-bottom-spacing > [class*='col-'] {
  margin-bottom: 1.0rem;
}

@media (min-width: 992px) {
  .row-bottom-spacing {
    margin-top: 1.5rem;
  }
}
.card .card-title {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom:0.1rem;
}
.card .card-text {
  text-align: left;
  padding-left: 0rem;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}
.distributor-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 0.5rem;
  /* box-shadow: 0 4px 12px rgba(80, 80, 80, 0.14); */
  box-shadow: 4px 6px 8px rgba(80, 80, 80, 0.2);
}

.distributor-card .card-text {
  margin-bottom: 0;
}

.distributor-card a {
  color: #00756d;
}

.distributor-card a:hover,
.distributor-card a:focus {
  color: #005b55;
}

.pricing-page .distributor-card {
  border: 1px solid #009F93;
  box-shadow: none;
}

.row-card-frame {
  background-color: #ffffff;
  border: 1px solid #009F93;
  border-radius: 0.5rem;
  padding: 0.3rem 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.row-card-frame > .row {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  align-items: center;
}

.row-card-frame > .row > [class*="col"] {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.row-card-frame > .row > [class*="col"] > * {
  width: 100%;
}

@media (max-width: 767px) {
  .row-card-frame > .row > [class*="col"]:not(:last-child) {
    padding-bottom: 0.02rem;
  }
  .row-card-frame > .row > [class*="col"] {
    justify-content: center;
  }
  .row-card-frame .price-title,
  .row-card-frame .price-text {
    text-align: center !important;
  }
}

.pricing-page .distributor-card .card-text {
  text-align: center;
}

.pricing-page .distributor-card .card-body-left {
  text-align: center;
}
.card-img-top {
    display:block;
    margin: 0 auto;
    padding-top: 0rem;
    border: 1px solid rgba(0, 0, 0, 0.5);
    max-width: 100%;
    box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.2);
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
body, .container, .container-wide, .jumbotron, .card {
  background-color: #f9f9f9;
}
.jumbotron-image {
  background-image: url('../images/maincards/main-liscie.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 500px;
  color: rgba(64, 64, 64, 0.95);
  /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);*/
}
.jumbotron-image-narrow {
  background-image: url('../images/maincards/main-liscie.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100px;
  color: rgba(64, 64, 64, 0.95);
  /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);*/
}
/* Make navbar menu items bolder and larger */
.navbar-nav .nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222222 !important;
}
.navbar-nav .dropdown-item {
  font-size: 1.0em;
  font-weight: 460;
  color: #111111 important;
 }
/* stronger hover/focus highlight for dropdown items */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  background-color: #009F93;
  color: #ffffff !important;
  font-weight: 600;
}
 /* hide the down arrow on navbar dropdowns */
.navbar .dropdown-toggle::after {
  display: none !important;
}
.navbar.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
}
/* Below all for pricing page */
.price-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.0;
  padding-top: 0rem;
  padding-left: 0.0rem;
  padding-right: 0.0rem;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.price-text {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  font-size: 1.1rem;
  line-height: 1.00;
}
.guide-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
  padding-top: 0.3rem;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-bottom: 0.4rem;
  margin-top:0.8rem;
  text-align: center;
  position: relative;
}
/* Below all for products page */
.product-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.0;
  padding-top: 0rem;
  padding-left: 1rem;
  padding-right: 0rem;
  padding-bottom: 0.5rem;
  text-align: right;
  position: relative;
}
.product-midtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.0;
  padding-top: 0.3rem;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-bottom: 0.0rem;
  margin-top:0.8rem;
  text-align: left;
  position: relative;
}
.product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 0rem;
  padding-bottom: 0.15rem;
  text-align: right;
  position: relative;
}
.product-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, rgba(0, 159, 147, 0), #00867E);
  /*background: linear-gradient(to right, rgba(0, 159, 147, 0), #009F93, #00867E, #009F93, rgba(0, 159, 147, 0));*/
}
.product-sub-midtitle {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.0;
  padding-top: 0.3rem;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-bottom: 0.0rem;
  margin-top:0.5rem;
  text-align: left;
  position: relative;
}
.instrument-mid-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.0;
  padding-top: 0.3rem;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-bottom: 0.20rem;
  margin-top:0.5rem;
  text-align: left;
  position: relative;
}
.instrument-mid-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #00867E,  rgba(0, 159, 147, 0));
  /*background: linear-gradient(to right, rgba(0, 159, 147, 0), #009F93, #00867E, #009F93, rgba(0, 159, 147, 0));*/
}
.alone-mid-gradient-line {
  height: 2px;
  border: none;
  background: linear-gradient(to right, rgba(0, 159, 147, 0), #009F93, #00867E, #009F93, rgba(0, 159, 147, 0));
  margin: 0.5rem 0 1rem 0;
}
.alone-left-gradient-line {
  height: 2px;
  border: none;
  background: linear-gradient(to right, #00867E, rgba(0, 159, 147, 0));
  margin: 0.5rem 0 1rem 0;
}
/* Responsive font sizes for main-title */
@media (max-width: 768px) {
  .product-title {
    font-size: 2.0rem;
    padding-left: 2rem;
    padding-right: 0rem;
    padding-top: 1rem;
  }
}
@media (max-width: 576px) {
  .product-title {
    font-size: 1.6rem;
    padding-left: 0rem;
    padding-right: 0rem;
    padding-top: 1rem;
  }
}
.general-text {
  text-align: left;
  padding-left: 0rem;
  margin-top: 0.20rem;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
  line-height: 1.30;
}
.general-text-block {
  display: block;   /* default */
  margin: 0.01rem 0 0.6rem 0;
  padding-top:0.0rem;
  font-size: 1.1rem;
  line-height: 1.3;
  text-align:left;
}
.contact-left-lock,
.contact-left-lock p,
.contact-left-lock div,
.contact-left-lock a,
.contact-left-lock strong,
.contact-left-lock span {
  text-align: left !important;
}
.general-text-block-list {
  display: block;   /* default */
  margin: 0.01rem 0 0.05rem 0;
  padding-top:0.05rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

ul .general-text-block-list {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

ul .general-text-block-list::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

/* Use on lists that should start below a left-floated figure. */
.list-clear-left {
  clear: left;
}

/* Keep bullet and text together when wrapping beside a left-floated figure. */
ul.list-next-to-left-figure {
  margin-left: 0;
  padding-left: 0;
}

ul.list-next-to-left-figure .general-text-block-list {
  padding-left: 0;
}

ul.list-next-to-left-figure .general-text-block-list::before {
  position: static;
  display: inline-block;
  width: 1.1rem;
}

ol .general-text-block-list {
  display: list-item;
  padding-left: 0.7rem;
}

.general-subtitle {
  text-align: left;
  padding-left: 0rem;
  margin-top: 2.0rem;
  margin-bottom: 0.0rem;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.0;
}
.subtitle-side {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding-left: 0rem;
  margin-top: .4rem;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}
p.subtitle-side { text-align: center; }
.general-list {
  text-align: center;
  padding-left: 0rem;
  margin-top: 0.2rem;
  margin-bottom: 0rem;
  font-size: 1.1rem;
  line-height: 1.45;
}
.general-list.tight {
  margin-top: 0.8rem;
  margin-bottom: 1.0rem;
  line-height: 1.1;
}
/*
.general-list .item-label,
.general-list a {
  display: inline;
  width: 18ch;
}
*/
.general-list .item-label{
  display:inline-block;
}
.general-list a {
  display: inline-block;
  padding-left:0.2rem;
}
/*
@media (min-width: 576px) {
  .general-list .item-label {
    display: inline-block;
   }
  .general-list a {
    display: block;
    padding-left:0.6rem;
  }
}
*/
/*products page items - image float right style*/
.float-right-img {
  float: right;
  margin-left: 1.5rem;      /* space between image and text on left */
  margin-bottom: 1rem;      /* space below image when text wraps */
  max-width: 100%;           /* prevents image from being too large */
  height: auto;
}
/* Clear float after paragraph to prevent layout issues */
.general-text::after {
  content: "";
  display: table;
  clear: both;
}
.float-right-img {
  float: right;
  margin-left: 1.5rem;      /* space between image and text on left */
  margin-bottom: 0.2rem;      /* space below image when text wraps */
  max-width: 100%;           /* prevents image from being too large */
  height: auto;
}
.float-left-img {
  float: left;
  margin-right: 1.5rem;      /* space between image and text on right */
  margin-bottom: 0.2rem;      /* space below image when text wraps */
  max-width: 25%;           /* prevents image from being too large */
  height: auto;
}
.product-img {
    display:block;
    border: 1px solid rgba(0, 0, 0, 0.8);
    box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.caption-text {
  text-align: left;
  padding-left: 0rem;
  margin-top: 0.0rem;
  margin-bottom: 1.0rem;
  font-size: 1.0rem;
  font-style: italic;
  line-height: 1.0;
}
.fig-set-left {
  /*display: inline-block;*/
  display: fit-content;
  float: left;
  margin-right: 1.2rem;
  margin-bottom: 0.1rem;
  margin-top: 0.4rem;
  text-align: left;
}
.fig-set-right {
  /*display: inline-block;*/
  display: fit-content;
  float: right;
  margin-left: 1.2rem;
  margin-bottom: 0.1rem;
  margin-top: 0.4rem;
  text-align: left;
}
.fig-set-full {
  /*display: inline-block;*/
  display: fit-content;
  float: none;
  margin-left: 0rem;
  margin-bottom: 0.1rem;
  margin-top: 1.0rem;
}
.fig-size50 {
  max-width:50%;
}
.fig-size45 {
  max-width:45%;
}
.fig-size40 {
  max-width:40%;
}
.fig-size35 {
  max-width:40%;
}
.fig-size30 {
  max-width:40%;
}
.fig-size25 {
  max-width:25%;
}
.fig-size20 {
  max-width:20%;
}
figure img {
  display: block;
  margin-bottom: 0.0rem; /*0 15px 10px 0;*/
  max-width: 100%;
}
.figure-caption {
  font-size: 0.9em;
  font-style: italic;
  color: #666;
  margin-top: 0.2em;
  margin-bottom: .0rem;
  padding: 0.1rem;
  line-height: 1.0;
}
.click-zoom {
  cursor: zoom-in !important;
}

.zoom-cursor-area {
  position: relative;
  cursor: zoom-in !important;
}

.zoom-cursor-area * {
  cursor: zoom-in !important;
}

.zoom-cursor-area::after {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: 1;
}

.image-lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  align-items: center;
  justify-content: center;
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.image-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.45);
}

.image-lightbox-caption {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.image-lightbox-caption:empty {
  display: none;
}

.image-lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:focus {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.row-guide-action {
    display: flex;
    align-items: center;
}

.row-guide-action > [class*='col-']:last-child {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .row-guide-action {
    text-align: center;
  }

  .row-guide-action > [class*='col-'] {
    text-align: center;
  }

  .row-guide-action > [class*='col-']:last-child {
    justify-content: center;
  }
}

.equal-height-row {
    display: flex;
    align-items: stretch;
}

.equal-height-row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
/* Override primary button color and height */

.btn-primary {
  /*background-color: #009F93; */ /* Geomar brand teal */
  background: linear-gradient(to bottom, #f3f7f7 0%, #c9caca 100%);
  border-color: #001d1a;
  border-radius: 7px;  /* Makes it rounded - adjust value for more/less rounding */
  width: 180px;  /* Set fixed width - adjust value as needed */
  text-align: center;
  color: #080808fd;
  padding: 0.1rem 0.01rem;  /* Smaller height - reduce padding-top/bottom */
  margin-top: 0.2rem;
  font-size: 0.975rem;  /* Optional: slightly smaller text */
}
.btn-primary-down {
  margin-top: 0.9rem;
}
.btn-primary-fit {
  width: fit-content;
  padding-left:10px;
  padding-right:10px;
}

.btn-primary:hover {
  background: linear-gradient(to bottom, #f7f7f7 0%, #ffffff 100%);
  border-color: #006B60;
  color: #111111fd;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 73, 72, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #484949;
  border-color: #009F93;
  color: #140101;
}

.btn-primary:not(:disabled):not(.disabled):active, 
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background: linear-gradient(to bottom, #b9b8b8 0%, #6c6e6e 100%);
  border-color: #00110f;
  color: #0a0909;
}
/* button with green */
.btn-primarygreen {
  /*background-color: #009F93; */ /* Geomar brand teal */
  background: linear-gradient(to bottom, #03dbc9 0%, #00867E 100%);
  border-color: #001d1a;
  border-radius: 7px;  /* Makes it rounded - adjust value for more/less rounding */
  width: 180px;  /* Set fixed width - adjust value as needed */
  text-align: center;
    color: #fdfcfcfd;
    padding: 0.1rem 0.01rem;  /* Smaller height - reduce padding-top/bottom */
  margin-top: 0.2rem;
  font-size: 0.975rem;  /* Optional: slightly smaller text */
}
  
.btn-primarygreen:hover {
  background: linear-gradient(to bottom, #02b4a8 0%, #006B60 100%);
  border-color: #006B60;
  color: #fdfcfcfd;
}

.btn-primarygreen:focus, .btn-primarygreen.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 159, 147, 0.5);
}

.btn-primarygreen.disabled, .btn-primarygreen:disabled {
  background-color: #009F93;
  border-color: #009F93;
  color: #140101;
}

.btn-primarygreen:not(:disabled):not(.disabled):active, 
.btn-primarygreen:not(:disabled):not(.disabled).active,
.show > .btn-primarygreen.dropdown-toggle {
  background: linear-gradient(to bottom, #00867E 0%, #006B60 100%);
  border-color: #00110f;
  color: #0a0909;
}
/* end of green button */
a {
  color: #009F93;
}

a:hover {
  color: #007A70;
}
/* end of file */