/* CSS Document */

/*********************************
2. Body and some general stuff
*********************************/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  background: #ffffff;
  color: #1e1e27;
  overflow-x: hidden;
}

ul {
  list-style: none;
  margin-bottom: 0px;
  padding: 0;
}

p {
  font-size: 14px;
  line-height: 1.5;
  color: #574e4e;
}

a {
  text-decoration: none;
}

a:focus-visible {
  outline: 0 none;
}

.trans_300 {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

form .form-control,
form .form-select {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 0;
  height: 38px;
}

form textarea {
  resize: none;
}

.form-control:focus,
.form-select:focus,
.btn-close:focus,
.accordion-button:focus,
.btn:focus {
  box-shadow: none !important;
  border-color: #dee2e6 !important;
}

.form-label {
  margin-bottom: 5px;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

/* Scrollbar Styling */

::-webkit-scrollbar {
  width: 5px;
  margin-right: 15px;
}

::-webkit-scrollbar-track {
  margin: 10px 10px 10px 0;
  padding-right: 10px;
  background-color: #ddd;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: #89bbdf;
}


html .container {
  width: 100%;
  max-width: 1380px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  position: relative;
  float: none;
}

/*********************************
1. Header
*********************************/

.cont-cw {
  padding: 0 40px;
}

.main_nav_container {
  background: #1d80c8;
  padding: 5px 0;
}

.header-email a {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}
.header-email a i {
  padding-right: 8px;
  font-size: 13px;
}

/* Search box CSS */

.search-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.search-box {
  width: 100%;
  padding: 10px 40px 10px 10px;
  font-size: 14px;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 38px;
}
.search-box:focus-visible {
  outline: 0 none;
}

input::placeholder {
  font-size: 14px;
}

.search-btn {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 5px;
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  background: #1d80c8;
  padding: 6px 15px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.search-btn:hover {
  background: #01315e;
  color: #fff;
}
.search-results {
  display: none;
  position: absolute;
  top: 39px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  animation: slideDown 0.3s ease;
  z-index: 102;
}

.results-grid {
  display: flex;
  max-height: 250px;
  overflow-y: auto;
  margin-right: 8px;
  padding: 15px;
  position: relative;
}
.results-grid::before{
  content: "";
  width: 1px;
  position: absolute;
  height: 100%;
  top: -14px;
  left: 49%;
  background: #e2e2e2;
}

.results-column {
  flex: 1;
}

.results-column:last-child {
  padding-left: 12px;
}

.results-column .result-header {
    display: block;
    color: #1d80c8;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 5px;
    margin-bottom: 8px;
}

.results-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.results-column li{
  margin-bottom: 2px;
  padding: 3px 0px;
  border-radius: 4px;
  line-height: 16px;
  font-size: 13.5px;
}
.results-column li a{
  color: #1e1e27;
  cursor: pointer;
  transition: color 0.5s;
}

.results-column li a:hover {
  color: #1d80c8;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/***/

.get-quote-btn {
  position: relative;
  padding: 5px 12px;
  color: #1d80c8;
  overflow: hidden;
  font-size: 15px;
  border: 0;
  outline: 0 none;
  background: #fff;
}

.get-quote-btn span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #f2f2f2, #00305d);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.get-quote-btn span:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to bottom, #f2f2f2, #00305d);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.get-quote-btn span:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #f2f2f2, #00305d);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.get-quote-btn span:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to top, #f2f2f2, #00305d);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}

/* Start header-bottom CSS */

.header-bottom {
  background: #ffffff;
  padding: 8px 0;
  border-bottom: 1px solid #00305d;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.logo_container .logo {
  width: 248px;
}

/* Menu Naviagation css */

.menu-navigation{
  display: inline-flex;
  justify-content: center;
  width: 65%;
  transition: all 0.3s;
}

.menu-navigation .menu-btn {
  display: none;
}
.header .menu ul {
  display: inline-flex;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
}

.header .menu li {
  padding: 0 18px;
}
.header .menu a {
  font-size: 15px;
  display: block;
  text-decoration: none;
  color: #04335f;
  font-weight: 600;
  position: relative;
  transition: color 0.5s;
}
.header .menu a:hover {
  color: #1d80c8;
}


@media (max-width: 991px) {
  .header .menu-navigation{
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
  }
  .header .menu-btn {
    height: 36px;
    width: 44px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 101;
    padding-top: 6px;
  }
  .header .menu-btn .line {
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: hsl(0deg 0.58% 12.24%);
    transition: transform 0.5s;
  }
  .header .menu-btn .line-1 {
    transform: translateY(-8px);
  }
  .header .menu-btn .line-3 {
    transform: translateY(8px);
  }
  /* .header .menu-btn.active .line-2 {
    transform: rotate(-45deg);
  }
  .header .menu-btn.active .line-1,
  .header .menu-btn.active .line-3 {
    transform: translateY(0) rotate(-135deg);
  } */
  .header .menu {
    position: fixed;
    left: 100%;
    top: 0;
    height: 100%;
    background-color: #fff;
    width: 385px;
    padding: 10px 0px 30px;
    z-index: 105;
    box-shadow: 0 4px 10px #8e8e8e24;
    transition: transform 0.5s;
  }
  /* .menu-btn.active {
    display: none;
  } */
  .header .menu.open {
    transform: translateX(-100%);
  }
  .header .menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 62px;
    box-sizing: border-box;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
  }
  .header .menu > ul {
    max-height: 100%;
    overflow-y: auto;
  }
  .header .menu li {
    display: block;
    padding: 4px 14px;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 0;
    transition: all 0.3s ease;
  }
  .header .menu li:hover{
    background-color: #f8f8f8;
  }
  .header .menu li:hover a{
    color: #00305d;
  }
  .header .menu li + li {
    margin: 0;
  }
  .header .menu a {
    padding: 8px 12px;
  }
  .header .menu a::after {
    content: none;
  }
  .header .menu ul {
    display: inline-block;
  }
  .header .menu a {
    color: #222;
  }
  .header .menu.open .close-btn{
    position: absolute;
    top: 2px;
    left: -38px;
  }
}


/* Initially hide the close button */

.close-btn {
    display: none;
    border: none;
    font-size: 20px;
    color: #fff;
    background: #1d80c8;
    height: 38px;
    width: 38px;
    cursor: pointer;
    z-index: 10;
}

/* Show the close button on smaller screens */
@media (max-width: 991px) {
  .menu {
    position: relative;
  }
  .close-btn {
    display: block;
  }
}




/* modal-dialog */

.modal-dialog .modal-header {
  padding: 12px 14px;
  color: #0049b3;
  position: relative;
}
.modal-header .modal-title {
  font-size: 16px;
}
.modal-dialog .btn-close {
  position: absolute;
  top: -6px;
  right: -12px;
  font-size: 10px;
  border: 1px solid #bbb7b7;
  border-radius: 50%;
  padding: 8px;
  background-color: #ffffff;
  margin-right: 0;
  opacity: 1;
}
.modal-dialog .download-catlog {
  display: inline-block;
  width: 100%;
  margin-bottom: 4px;
  border: 1px solid #e7e7e7;
  border-left: 2px solid #0049b3;
  padding: 6px 10px;
  background: #f9f9f9;
  line-height: 16px;
  font-size: 14px;
  position: relative;
  color: #010f1c;
}
.modal-dialog .download-catlog .download-icon {
  padding-left: 4px;
  font-size: 13px;
  color: #686767;
}

/* Start Home page */

.content1 {
  padding-top: 22px;
}
.content1 p {
  text-align: justify;
  line-height: 19px;
}

section {
  padding: 18px 0 35px;
  margin-top: 32px;
}

.section-title {
  text-align: center;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  font-size: 28px;
  color: #1d80c8;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 0;
  position: relative;
  display: inline-block;
}

.section-title h1::after,
.section-title h2::after,
.section-title h3::after,
.section-title h4::after,
.section-title h5::after,
.section-title h6::after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 166px;
  height: 4px;
  left: 50%;
  margin-left: -83px;
  background-image: url(../images/title-bg.png);
}

.section-title p{
  text-align: center;
  line-height: 19px;
}

.pg-tp {
  margin-top: 10px;
}

/* Start Lab Equipment section  */


.frezer-row{
  display: flex;
  flex-wrap: wrap;
}
.frezer-wr {
  width: 20%;
  padding: 0 5px;
  margin-bottom: 10px;
  display: flex;
  height: inherit;
  flex-direction: column;
}

.categories-item{
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}
.categories-item .categories-img {
  text-align: center;
  background-color: #f4f4f4;
  padding: 20px 0;
}
.categories-item .categories-img img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}

.categories-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 10px 0;
}
.categories-content h2,
.categories-content h3,
.categories-content h4,
.categories-content h5,
.categories-content h6,
.categories-content p {
  font-size: 15px;
  color: #1d80c8;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 18px;
  transition: all 0.3s ease;
}
.categories-content h2:hover,
.categories-content h3:hover,
.categories-content h4:hover,
.categories-content h5:hover,
.categories-content h6:hover,
.categories-content p:hover {
  color: #043460;
}

/* Responsive CSS lab-categories section */

@media only screen and (min-width: 991px) and (max-width: 1170px){
 .frezer-wr {
    width: 25%;
  }
}
@media only screen and (min-width: 670px) and (max-width: 991px){
 .frezer-wr {
    width: 33.33%;
  }
  .categories-item .categories-img {
    padding: 10px 0;
  }
}
@media only screen and (min-width: 420px) and (max-width: 670px){
 .frezer-wr {
    width: 50%;
  }
  .categories-item .categories-img {
    padding: 10px 0;
  }
  .categories-item .categories-img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
  }
}
@media only screen and (max-width: 420px){
   .frezer-wr {
    width: 100%;
  }
  .categories-item .categories-img {
    padding: 5px 0;
  }
}


/* Start Hybridzer section */

.hybridizer-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 10px 10px;
  height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.hyb-img{
  overflow: hidden;
  width: 40%;
  float: left;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 12px;
  height: 100%;
}
.hyb-img img{
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.hyb-text{
  overflow: hidden;
}
.hyb-text h2,
.hyb-text h3,
.hyb-text h4,
.hyb-text h5,
.hyb-text h6,
.hyb-text p {
  font-size: 16px;
  font-weight: 600;
  color: #1d80c8;
  line-height: 18px;
  margin-bottom: 8px;
}
.product-specs ul {
  overflow: hidden;
  padding-right: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 85px;
}
.product-specs li {
  color: #585151;
  font-size: 14px;
  position: relative;
  line-height: 18px;
  margin-bottom: 4px;
}
.product-specs li span {
  color: #201e1e;
  font-weight: 500;
}

.btn-ftr {
  margin-top: 8px;
  margin-bottom: 5px;
}

.catalog-btn{
  color: #1d80c8;
  font-size: 13px;
  background: #f4f4f4;
  padding: 4px 8px;
  border: 1px solid #1d80c8;
  border-radius: 5px;

}
.catalog-btn i{
  font-size: 12px;
  margin-right: 6px;
}
.catalog-btn:hover{
  background: #0080b4;
  color: #fff;
}

@media only screen and (min-width: 576px) and (max-width: 780px){
  .hyb-img {
      overflow: hidden;
      width: 100%;
      float: left;
      height: auto;
      margin-bottom: 10px;
  }
  .hyb-text {
      overflow: visible;
  }
  
}
@media only screen and (max-width: 430px){
  .hyb-img {
      overflow: hidden;
      width: 100%;
      float: left;
      height: auto;
      margin-bottom: 10px;
  }
  .hyb-text {
      overflow: visible;
  }
}


/* start microtome section */

.microtome-item {
  height: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.microtome-img {
  text-align: center;
  padding: 10px;
}
.microtome-img img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.microtome-content {
  border-top: 1px solid #e2e2e2;
  padding: 12px 0 5px;
}
.microtome-content h2,
.microtome-content h3,
.microtome-content h4,
.microtome-content h5,
.microtome-content h6,
.microtome-content p {
  font-size: 16px;
  font-weight: 600;
  color: #1d80c8;
  line-height: 18px;
  margin-bottom: 8px;
}
.microtome-content .table{
  margin-bottom: 10px;
}
.microtome-content .table tr td {
  font-size: 14px;
  padding: 6px 10px;
  line-height: 20px;
  color: #585858;
}
.microtome-content .table tr td:first-child {
  color: #000;
  font-weight: 500;
}

.microtome-specs ul {
  overflow: hidden;
  padding-right: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 73px;
}
.microtome-specs li {
  color: #585151;
  font-size: 14px;
  position: relative;
  line-height: 18px;
  margin-bottom: 4px;
}
.microtome-specs li span {
  color: #201e1e;
  font-weight: 500;
}

.mic-ftr {
  display: inline-flex;
  justify-content: left;
  width: 100%;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.micro-btn {
  border: 0;
  outline: 0;
  background: #1d80c8;
  color: #fff;
  padding: 2px 8px;
  font-size: 13px;
  border-radius: 5px;
}
.micro-btn i {
  font-size: 12px;
  margin-right: 8px;
}
.cat-btn {
  color: #1d80c8;
  font-size: 13px;
  background: #f4f4f4;
  padding: 2px 8px;
  border: 1px solid #1d80c8;
  border-radius: 5px;
}
.cat-btn i {
  font-size: 12px;
  margin-right: 4px;
}


@media only screen and (max-width: 576px){
  .microtome-section .col-sm-6{
    width: 50%;
  }
  .microtome-img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
  }
}
@media only screen and (max-width: 450px){
  .microtome-section .col-sm-6{
    width: 100%;
  }
  .microtome-img img {
    width: 140px;
    height: 140px;
    object-fit: contain;
  }

}
@media only screen and (max-width: 268px){
  .microtome-specs ul {
    height: 105px;
  }
}
@media only screen and (min-width: 450px) and (max-width: 525px){
 .microtome-specs ul {
  height: 110px;
}
}

/* Start Footer section */

.footer {
  position: relative;
}
.footer-items {
  background-image: url(../images/footer-widgets-bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 125px 0px 5px 0px;

}
.ftr-logo img {
  width: 250px;
}
.ftr-item .logo-content {
  color: #2c2b2b;
  line-height: 20px;
}
.footer-items .ftr-header {
  font-size: 18px;
  color: #00305d;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 20px;
}
.footer-items .ftr-header::after {
  background: #1d80c8 none repeat scroll 0 0;
  content: "";
  display: block;
  height: 3px;
  margin-top: 9px;
  max-width: 75px;
  width: 50%;
  position: absolute;
}

.ftr-item li {
  margin-bottom: 10px;
  line-height: 18px;
}
.ftr-item .ftr-list li{
  position: relative;
}
.ftr-item .ftr-list li::before{
  content: "\F285";
  font-family: "bootstrap-icons";
  font-size: 11px;
  color: #2c2b2b;
  margin-right: 2px;
  margin-left: 3px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  margin-top: 0px;
}

.ftr-item li a {
  color: #2c2b2b;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.ftr-item li a:hover {
  color: #00305d;
}

.ftr-contact-info li i {
  display: inline-block;
  margin-right: 10px;
  margin-top: 4px;
  font-size: 16px;
  vertical-align: top;
  color: #1d80c8;
}

.ftr-contact-info li p,
.ftr-contact-info li a {
  color: #2c2b2b;
  font-weight: 500;
  line-height: 20px;
  transition: all 0.3s ease;
}

.ftr-contact-info li a:hover {
  color: #005490;
}
.ftr-contact-info i + * {
  overflow: hidden;
  font-size: 14px;
  color: #687188;
  line-height: 26px;
  margin: 0;
  vertical-align: middle;
  max-width: 78%;
  display: inline-block;
}
.copyright-footer {
  font-size: 14px;
  padding: 12px 16px;
  color: #2c2b2b;
  border-top: 1px solid #dbdbdb;
  text-align: center;
  line-height: 18px;
}

/***/

/* breadcrumb section css */

.breadcrumbs {
  width: 100%;
  padding: 10px 0;
  border-bottom: solid 1px #ebebeb;
  margin-bottom: 5px;
}
.breadcrumbs ul li {
  display: inline-block;
  position: relative;
  padding-left: 15px;
}
.breadcrumbs ul li:first-child {
  padding-left: 0;
}
.breadcrumbs ul li::after {
  position: absolute;
  left: 2px;
  top: 0px;
  display: inline-block;
  vertical-align: middle;
  content: "/";
  font-size: 10px;
  color: #51545f;
}
.breadcrumbs ul li:first-child::after {
  display: none;
  padding-left: 0;
}
.breadcrumbs ul li.active a {
  color: #00305d;
}
.breadcrumbs ul li a {
  color: #1e1e27;
}
.breadcrumbs ul li a i {
  padding-right: 6px;
  font-size: 13px;
}

/**/

.page-content {
  text-align: center;
  padding: 8px 0;
}

.page-content h1,
.page-content h2 {
  font-size: 26px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  color: #1d80c8;
  font-weight: 700;
}
.page-content p{
  text-align: center;
  line-height: 20px;
  margin-bottom: 0;
}

/* Start Lab equipment page */

.lab-row{
  display: flex;
  flex-wrap: wrap;
}
.lab-box{
  width: 20%;
  padding: 0 5px;
  margin-bottom: 10px;
  display: flex;
  height: inherit;
  flex-direction: column;
}
.lab-item {
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 0 4px 2px transparent;
  padding: 10px 10px;
  height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.lab-name h2,
.lab-name h3,
.lab-name h4,
.lab-name h5,
.lab-name h6,
.lab-name p {
  font-size: 16px;
  font-weight: 500;
  color: #1d80c8;
  line-height: 20px;
  margin-bottom: 0px;
  border: 1px solid #eee;
  padding: 4px 010px;
  border-radius: 4px;
}
.lab-img {
  overflow: hidden;
  text-align: center;
  margin-bottom: 4px;
}
.lab-img img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* Responsive CSS lab-categories section */

@media only screen and (min-width: 991px) and (max-width: 1170px){
 .lab-box {
    width: 25%;
  }
}
@media only screen and (min-width: 670px) and (max-width: 991px){
 .lab-box {
    width: 33.33%;
  }

}
@media only screen and (min-width: 420px) and (max-width: 670px){
 .lab-box {
    width: 50%;
  }
}
@media only screen and (max-width: 420px){
   .lab-box {
    width: 100%;
  }
}

/* Start Sub product by categories page */

.btn-tabs-row {
  text-align: center;
  margin: 5px 0;
}
.btn-tabs-row ul {
  background: #f7f7f7;
  padding: 10px 20px;
  margin: 0;
  display: inline-flex;
  justify-content: left;
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-tabs-row ul li {
    display: block;
    margin: 0 5px 5px 0;
    border: 1px solid #bedcf9;
    border-radius: 5px;
    padding: 4px 8px;
    background: #fff;
}

.btn-tabs-row li a {
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    text-transform: capitalize;
    background: transparent;
    color: #1d80c8;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-tabs-row li a:hover{
  color: #1d80c8;
}
.btn-tabs-row li.active a {
  color: #1d80c8;
  background: #f7f7f7;
}
.btn-tabs-row li.active a::after {
  transition: all 0.5s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  left: 0;
  width: 100%;
  background-color: #1d80c8;
  opacity: 0.5;
}


.hybridizer-item .compare {
  position: absolute;
  bottom: 11px;
  right: 10px;
}

/**===============================- Compare -=================================-**/

.compare_bttn {
  background-color: #235a66;
}

.action--compare-add {
  color: #4170b5;
}

.action--compare-add:hover .action__text--invisible,
.action--download:hover .action__text--invisible {
  color: #ddd;
  font-size: 16px;
  letter-spacing: 0;
  background: #2f3035;
  border-radius: 2px;
  padding: 3px 5px;
}

.action--compare-add .fa-check,
.action--compare-add input[type="checkbox"]:checked ~ .fa-plus {
  display: none;
}

.action--compare-add input[type="checkbox"]:checked ~ .fa-check {
  display: inherit;
  color: #4170b5;
  cursor: pointer;
}

.check-hidden {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.cpp i {
  font-size: 15px;
}

.action {
  display: inline-block;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: center;
  text-transform: capitalize;
}

.action:focus {
  outline: none;
}

.action__text {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.813em;
  vertical-align: middle;
  display: inline-block;
}

.action__text--invisible {
  position: absolute;
  top: 100%;
  opacity: 0;
  pointer-events: none;
}

.compare-top {
  position: fixed;
  top: 265px;
  right: 30px;
  z-index: 99;
}

.btn-compare,
.btn-compare:hover {
  background-color: #00305d;
  color: #fff !important;
  font-size: 14px;
  border-radius: 0;
  border: 1px solid #00305d;
}

.col-md-2-5.col-lg-2-5 {
  width: 20%;
}

.leftfl::before,
.rightfl::before {
  font-size: 25px;
}

.cpp {
  color: #666;
  border: 1px solid #e7e7e7;
  cursor: pointer;
  height: 30px;
  width: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
}

.cpp:focus {
  outline: 0 none;
}

/******/

.lbz-btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #1d80c8;
  border-radius: 0.6em;
  align-self: center;
  font-size: 14px;
  line-height: 1;
  padding: 10px 18px;
  text-align: center;
  border-color: #1d80c8;
  color: #034aa7;
  background-image: linear-gradient(45deg, #1d80c8 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: background 300ms ease-in-out;
}

.lbz-btn:hover {
  background-position: 0;
  outline: 0;
  color: #fff;
}

/* Start Product by categories page */

.pbc-row {
  display: flex;
  flex-wrap: wrap;
}
.categories-list {
  width: 19%;
  margin-right: 12px;
}
.productsby-content{
  width: 80%;
}
.side-area {
  margin-bottom: 30px;
  border: 1px solid #efefef;
  padding: 5px 15px 15px 15px;
  background: #fbfbfb;
}
.side-area .side-title {
  position: relative;
  margin-bottom: 8px;
  border-bottom: 1px solid #efefef;
}
.side-title p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #000;
  line-height: 40px;
}
.product-side .side-content {
  border-bottom: 1px solid #eee;
}
.product-side .side-content:last-child {
  border-bottom: 0px;
}
.product-side .side-header {
  font-size: 15px;
  font-weight: 600;
  color: #004aae;
  margin-bottom: 12px;
}
.product-side .content-item {
  border-top: 1px solid #ddd;
  padding-top: 12px;
}

.product-side .content-item:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0px solid transparent;
}

.product-side .list {
  overflow: hidden;
  padding-right: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  margin: 10px 10px 10px 0;
}
.product-side .list li {
  display: flex;
  margin-bottom: 8px;
  cursor: pointer;
  line-height: 18px;
  transition: 0.5s;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 6px;
    margin-top: 3px;
    cursor: pointer;
}
.product-side .list li span {
  font-size: 14px;
  font-weight: normal;
  color: #0c0b0b;
  position: relative;
  margin-left: 8px;
}


@media only screen and (min-width: 991px) and (max-width: 1228px) {
  .categories-list {
    width: 22%;
    margin-right: 12px;
  }
  .productsby-content {
    width: 76%;
  } 
}
@media only screen and (max-width: 991px){
  .productsby-content {
    width: 100%;
  } 
}

/* Start FAQ section */

.faq-section {
  max-width: 900px;
  margin: auto;
  width: 100%;
}
.faq-item {
  margin-bottom: 10px;
  padding: 15px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  background-color: #f9f9f9;
}
.faq-question {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #1d80c8;
}
.faq-answer {
  font-size: 14px;
  color: #333;
  line-height: 18px;
}

/* Compare-section */

.compare-section .table th {
  vertical-align: middle;
  line-height: 20px;
  padding: 15px 15px;
  width: 150px;
  font-weight: 500;
  color: #000;
}
.compare-section .table tr td {
  padding: 15px 15px;
  vertical-align: middle;
  position: relative;
}
.compare-section .table .product-img {
  text-align: center;
}
.compare-section .table .product-img img {
  width: 170px;
}
.compare-section .product-img h2, .compare-section .product-img h3, .compare-section .product-img h4, .compare-section .product-img h5, .compare-section .product-img h6{
  font-size: 15px;
  color: #004aad;
  margin: 28px 0 0;
  line-height: 20px;
  text-align: left;
}
.compare-section .table .product-img .remove {
  position: absolute;
  top: 6px;
  right: 10px;
}
.remove a {
  color: #fe6464;
}

/* Start Produt details page */

.main-image-xl {
  position: sticky !important;
  top: 12px;
  margin: 0px !important;
  text-align: left;
}

.main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  border: 1px solid #bfe4ff;
  height: 340px;
}
.main-image img {
  width: 230px;
  height: 230px;
  object-fit: contain;
  padding: 20px;
  transition: all 0.3s ease;
}

.more-images-slider {
  margin-top: 12px;
}
.more-images-slider .more-imge-item {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #f4f4f4;
  border: 1px solid #9ad4ff;
  height: 110px;
  transition: all 0.3s;
}
.more-images-slider .more-imge-item:hover {
  border: 1px solid #4170b5;
}
.more-images-slider .more-imge-item.active {
  border-color: #e8782f;
}

.more-imge-item img {
  width: 90px !important;
  height: 90px;
  object-fit: contain;
  padding: 5px;
}

/* Start owl slider css */

.owl-carousel .owl-dots {
  display: none;
}
.more-images-slider .owl-carousel .owl-nav button {
  color: #44464a !important;
  transform: translateY(-20px);
  background: #b9aca5;
  height: 25px;
  width: 25px;
  text-align: center;
  border-radius: 50%;
}
.more-images-slider .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: -17px;
}
.more-images-slider .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: -17px;
}

.more-images-slider .owl-nav button span {
  font-family: FontAwesome;
  display: inline-block;
  vertical-align: middle;
  content: "\f095";
  font-size: 12px;
  color: #fff;
  padding: 0;
}

/****/

.product-about {
  margin-bottom: 30px;
}
.product-about .about {
  text-align: justify;
  color: #1e1e27;
  line-height: 19px;
}
.product-title h1 {
  font-size: 20px;
  color: #1d80c8;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-actions {
  display: inline-flex;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 15px;
  align-items: center;
}

.s-catlog-btn {
  padding: 8px 12px;
  margin: 0.5rem;
  line-height: 35px;
  border: 2px solid;
  border-radius: 7px;
  text-align: center;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: all 0.35s;
  border-color: #1cb2ef;
  color: #1cb2ef;
  transition: all 0.5s;
}
.s-catlog-btn:hover {
  box-shadow: inset 0 0 0 2em #716eef;
  border-color: #716eef;
  color: #fff;
}
.s-catlog-btn i {
  font-size: 14px;
  margin-right: 6px;
}
.details-tab {
  border: 1px solid #dee2e6;
  padding: 15px;
}
.product-details .nav-pills {
  border-bottom: 1px solid #e3e3e3;
}
.product-details .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #004da2;
  background-color: #e3e3e3;
  border-bottom: 2px solid #004da2;
  border-radius: 5px 5px 0 0;
}
.product-details .nav-pills .nav-link,
.nav-pills .show > .nav-link {
  font-size: 15px;
  color: #222;
}
.product-details .table tbody td,
.product-details .table tbody th {
  padding: 12px 20px;
}

.product-details .table tbody th {
  font-size: 14px;
  background: #fdfdfd;
}
.product-details .features-item li {
  font-size: 14px;
  line-height: 30px;
}
.product-details .download-catalog a {
  border: 1px solid #c3c3c3;
  padding: 5px 12px;
  color: #222;
}
.product-details .download-catalog a i {
  margin-left: 8px;
  font-size: 13px;
}
.products-details-tab .tab-content {
  font-size: 15px;
}
.features-item li {
  position: relative;
  padding-left: 25px;
}
.features-item li::before {
  position: absolute;
  left: 3px;
  top: 2px;
  font-family: "bootstrap-icons";
  display: inline-block;
  vertical-align: middle;
  content: "\F633";
  font-size: 15px;
  color: #222;
}


/* new css */


.product-details .table tbody th {
  font-size: 14px;
  font-weight: 500;
}
.product-details .accordion-button {
  background-color: #e5e5e5;
  font-weight: 500;
}
.product-details .features-item li {
  font-size: 14px;
  line-height: 30px;
  position: relative;
  padding-left: 25px;
}
.product-details .features-item li::before {
  position: absolute;
  left: 3px;
  top: 0px;
  font-family: "bootstrap-icons";
  display: inline-block;
  vertical-align: middle;
  content: "\F633";
  font-size: 14px;
  color: #545050;
}
.product-details .download-catalog a {
  border: 1px dashed #c3c3c3;
  padding: 5px 12px;
  color: #222;
  display: inline-block;
  line-height: 20px;
}
.spec-item {
  margin-bottom: 10px;
  border: 1px solid #dee2e6;
  padding: 10px 15px;
}
.spec-header {
  display: inline-block;
  color: #1d80c8;
  padding: 3px 5px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  text-align: center;
  border-bottom: 2px solid #04335f;
}


/* Start catalog page */

.catalog-item {
  padding: 10px 10px;
  border: 1px solid #ededed;
  height: 100%;
}
.catalog-name h2,
.catalog-name h3,
.catalog-name h4,
.catalog-name h5,
.catalog-name h6,
.catalog-name p {
  font-size: 15px;
  font-weight: 500;
  color: #004bb4;
  margin: 0;
}
.catalog-img {
  text-align: center;
  margin: 10px 0;
}
.catalog-img img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.catalogs-list ul {
  overflow: hidden;
  padding-right: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 105px;
}
.catalogs-list li {
  margin-bottom: 4px;
  border: 1px solid #e7e7e7;
  padding: 6px 10px;
  background: #f9f9f9;
  line-height: 16px;
}
.catalogs-list li a {
  color: #1c1b1b;
  font-size: 14px;
}

/* Start single catalog page */

.download-text h1 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #0d3b66;
}
.s-catalog-item {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.s-catalog-item .catalog-cover {
  background-image: url(../images/catalog.jpg);
  background-size: 100% 100%;
  background-position: center;
  height: auto;
  box-shadow: rgba(145, 139, 139, 0.2) 0px 12px 28px 0px,
    rgb(255, 255, 255) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  position: relative;
  background-repeat: no-repeat;
}
.cat-logo {
  text-align: right;
  padding: 22px 22px 0 0;
}
.cat-logo img {
  width: 300px;
}
.main-wrapper {
  text-align: center;
  padding: 28% 20px 20%;
}
.main-wrapper img {
  width: 240px;
  height: 240px;
  object-fit: contain;
}
.main-wrapper .cat-name {
  margin: 40px 0 22px;
}
.cat-name h2 {
  font-size: 20px;
  color: #00305d;
  font-weight: 600;
}
.catalog-body {
  background-color: #fff;
  box-shadow: rgba(145, 139, 139, 0.2) 0px 12px 28px 0px,
    rgb(255, 255, 255) 0px 2px 4px 0px,
    rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  padding: 30px 30px;
}
.body-item {
  margin-bottom: 28px;
}
.catalog-head {
  margin-bottom: 12px;
}
.catalog-head h3,
.catalog-head h4,
.catalog-head h5,
.catalog-head h6 {
  font-size: 15px;
  color: #00305d;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 0;
  border-bottom: 1px solid #1d80c8;
}
.body-item p,
.body-item li {
  font-size: 14px;
  text-align: justify;
  line-height: 18px;
  color: #323232;
  margin: 0;
}
.body-item li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.catalog-body .table tbody th,
.catalog-body .table tbody td {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 18px;
}
.catalog-body .table tbody th {
  vertical-align: middle;
  font-weight: 550;
}
.catalog-footer {
  text-align: center;
  padding-top: 10px;
}
.catalog-footer img {
  width: 250px;
}
.catalog-footer ul {
  padding-top: 14px;
}
.catalog-footer li {
  text-align: center;
  line-height: 22px;
  font-size: 14px;
}
.catalog-footer li a {
  color: #09347a;
}
.catalog_contact {
  margin-bottom: 5px;
  color: #1d80c8;
  font-size: 15px;
}
.catalog_contact a {
  color: #2c2c2c;
  font-size: 14px;
}

/* Start Contact Us page */

.contact-container {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  padding: 20px 50px 30px 40px;
  border: 1px solid #dfdede;
  margin: 0 auto;
}
.contact-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #ddd;
}
.content .left-side .details {
  margin: 14px;
  text-align: center;
}
.content .left-side .details i {
  font-size: 30px;
  color: #1d80c8;
  margin-bottom: 10px;
}
.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-one a {
  font-size: 14px;
  color: #4e4e4e;
  line-height: 20px;
}
.contact-container .content .right-side {
  width: 75%;
  margin-left: 65px;
}
.content .right-side h2 {
  font-size: 23px;
  font-weight: 600;
  color: #1d80c8;
  margin-bottom: 8px;
}
.right-side .input-box {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
}
.right-side .input-box input,
.right-side .input-box textarea {
  width: 100%;
  border: 1px solid #e1e1e1;
  outline: none;
  font-size: 14px;
  background: #f6fbf8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .input-box input{
  height: 45px;
}
.right-side .message-box {
  min-height: 110px;
}
.right-side .input-box textarea {
  height: 100%;
  padding-top: 10px;
}

.button input[type="button"]:hover {
  background: #5029bc;
}
@media (max-width: 950px) {
  .container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}
@media (max-width: 820px) {
  .contact-container {
    height: 100%;
    width: 86%;
    padding: 20px 30px 20px 30px;
  }
  .contact-container .content {
    flex-direction: column-reverse;
  }
  .contact-container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-container .content .left-side::before {
    display: none;
  }
  .contact-container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 567px){
  .contact-container {
    padding: 20px 20px;
  }
  .content .right-side h2 {
    font-size: 20px;
  }
  .content .right-side p{
    display: none;
  }
}

/***/

/* Start Terms and conditions page */

.policy-head {
  color: #222;
  font-weight: 600;
}

.aboutus-item p, .terms-conditions p{
  text-align: justify;
}

/* Start Sitemap section */

.sitemap-header h1 {
  padding: 10px 0 20px;
  color: #222;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
}

.sitemap ul > li > a.l0bg {
  color: #ffffff;
  background: #01315e;
  border: 2px solid #01315e;
}
.sitemap ul > li > a {
  display: inline-block;
  max-width: 500px;
  padding: 8px 10px;
  border: 1px solid #1d80c8;
  color: #1d80c8;
  font-size: 14px;
  border-radius: 5px;
  text-overflow: ellipsis;
  margin: 5px 0;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  line-height: 16px;
}
.sitemap ul > li {
  border-left: 1px solid #7ba7d1;
  padding-left: 30px;
}
.sitemap ul > li > a:before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  margin-top: -1px;
  height: 1px;
  width: 30px;
  background: #1d80c8;
}
.sitemap ul > li > .l1bg {
  color: #fff;
  background: #1d80c8;
  border: 0;
  font-weight: 500;
}


/* Fixed Get quote Button CSS animation */

.ftr-getquote{
  position: fixed;
  right: 10px;
  bottom: 45px;
  z-index: 99;
}
.ftr-getquote-btn{
    border: 0;
    outline: 0 none;
    font-size: 16px;
    background: #01315e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 22px;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgb(17 63 106);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}
/* Filter Css */

/* Hide default checkbox */
.filter-checkbox {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #6b7280;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition: all 0.2s ease;
}

/* Checked style */
.filter-checkbox:checked {
  border: 2px solid #1d80c8;
  background-color: initial;
  padding: 5px;
}

/* Optional: inner dot effect */
.filter-checkbox:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #1d80c8;
  border-radius: 50%;
  border: 0;
}
/* subcategory heading */
.subcategory-title {
    font-size: 14px;
    margin: 0; /* Optional: reset spacing if needed */
    font-weight: normal; /* Optional: if you want lighter heading */
}