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

body {
  font-family: "Mulish", sans-serif;
  letter-spacing: 0.5px;
}

html body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}

.topnav {
  background: #0543a8;
  padding: 5px 0;
  font-weight: 600;
}

.dmail {
  font-size: 15px;
  color: #fff;
  display: block;
  font-weight: 400;
}

.dmail i {
  font-size: 20px;
}

.searchInput {
  background: #fff;
  width: 100%;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.searchInput input {
  height: 38px;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 60px 0 10px;
  font-size: 14px;
  border-radius: 3px;
}

.searchInput .icon {
	position: absolute;
	right: 3px;
	top: 50%;
	transform: translateY(-50%);
	background: #e77c32;
	color: #fff;
	border: none;
	height: 32px;
	padding: 0 15px;
	font-size: 14px;
	cursor: pointer;
	font-weight: 600;
}

.menu-wrap {
  justify-content: flex-end;
}

.searchInput .resultBox {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.searchInput.active .resultBox {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
  position: absolute;
  background: white;
  border: 1px solid #e5e5e5;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 1110;
  border-radius: 0 0 5px 5px;
}

.resultBox li {
  padding: 8px 12px;
  cursor: pointer;
  display: none;
}

.searchInput.active .resultBox li {
  display: block;
}

.resultBox li:hover {
  background: #efefef;
}

.playbtn {
  width: 50px;
  height: 50px;
  position: fixed;
  display: inline-block;
  padding: 8px;
  color: #fff;
  transition: 0.5s;
  font-weight: 800;
  overflow: hidden;
  border-radius: 50%;
  background: #003fa7;
  border: 2px solid #003fa7;
  font-size: 10px;
  line-height: 100%;
  right: 10px;
  top: 70%;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.playbtn:hover {
  color: #fff;
  background-color: #003fa7;
  border-color: #003fa7;
}

/******** Play Button *********/
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 154, 29, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(254, 154, 29, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 154, 29, 0);
  }
}

/********************** main headr *****************************/
.navbarbox {
  padding: 7px 0;
  border-bottom: 1px solid #e2e1e1;
}

.navbarbox>.row {
  justify-content: space-between;
  padding: 0 12px;
}

.dlogo {
  width: 240px;
  height: auto;
  object-fit: contain;
}

/* Main Navbar */
.navwebste {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.navwebste li a {
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 9px;
  text-transform: capitalize;
  display: inline-block;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  font-family: "Mulish", sans-serif;
}

.navwebste li a:hover {
  color: #003fa7;
}

.navwebste li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #003fa7;
  border-radius: 3px;
  transition: 0.3s ease;
}

.close-menu {
  display: none;
}

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

  100% {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}



.modal.right .modal-dialog {
  position: fixed;
  right: 10px;
  margin: 0;
  bottom: 10px;
  max-width: 400px;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.modal.right.show .modal-dialog {
  transform: translateX(0);
}

.modal-content {
  height: 100%;
  border-radius: 0;
}

.popupw {
  width: 350px;
  border-radius: 4px;
  padding: 10px;
}

.noh {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  background: #003fa7;
  border-radius: 0;
  font-weight: 600;
}

.modal-footer {
  border-top: none;
  padding: 0;
  margin: 0;
}
.footer-end p a {
  font-size: 15px;
}
.po-in-la label {
  font-size: 12px;
  color: #003fa7;
  font-weight: 600;
}

.po-in-la input {
  padding: 3px 10px;
  border-radius: 2px;
}

.qtclose,
.qtsend {
  padding: 2px 14px;
  font-size: 13px;
  border-radius: 2px;
  font-weight: 500;
}

.qtclose {
  background: #fff;
  border: 1px solid #9f0404;
  color: #9f0404;
}

.qtclose:hover {
  background: #9f0404;
  color: #fff;
}

.qtsend {
  border: 1px solid #003fa7;
  background: #003fa7;

}

.qtsend:hover {
  background: #fff;
  color: #003fa7;
}


/********************** main headr end*****************************/
.banner-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.des-ce {
  margin-top: 20px;
}

.dil-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}



/******************************* Autoclave Equipment 1st sc home page start **************************/
.main-title h1,
.main-title h2,
.main-title h3,
.main-title h4,
.main-title h5,
.main-title h6 {
  font-size: 29px;
  text-align: start;
  margin: 82px 0 3px;
  color: #e77c32;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
}

.main-title p {
  font-size: 14px;
  text-align: justify;
}

/******************************* Autoclave Equipment 1st sc home page start **************************/
/*******************************  Home page 2nd section start **************************/
.labmi-row {
  margin-left: -3px;
  margin-right: -3px;
}

.incubator-main-box {
  width: 33.33% !important;
  padding: 3px;
  display: flex;
  flex-direction: column;
  height: inherit;

}

.incubator {
  border-top: 4px solid #aabddf;
  padding: 10px;
  box-shadow: 0 2px 5px 0 #b5bdd4;
  display: flex;
  flex-direction: column;
  height: inherit;
  flex: 1;
}

.incubator h2,
.incubator h3,
.incubator h4,
.incubator h5,
.incubator h6 {
  font-size: 18px;
  font-weight: 700;
  color: #022052;
  font-family: "Mulish", sans-serif;
  letter-spacing: 0.4px;
}

.incubator-he {
  display: flex;
  justify-content: center;
  align-items: center;
}

.incubator-he img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.table-con {
  padding-left: 10px;
}

.elect-spe {
  line-height: 20px;
  color: #4f4c4c;
  scrollbar-width: thin;
  scrollbar-color: #ccc #a9a9a9;
  overflow-y: auto;
  height: 110px;
  margin-top: 13px;
}

.elect-spe li {
  font-size: 14px;
  padding: 3px 10px;
  border: 1px solid #004aad2e;
  font-weight: 500;
  color: #353434;
}

.elect-spe li:nth-child(2n+1) {
  background-color: #fbfbfb;
}

.elect-spe li:nth-child(even) {
  background-color: #ffffff;
}

.label-electro {
  font-size: 10px;
  font-weight: 500;
}

.elect-spe span {
  color: #000;
  font-weight: 700;
  font-size: 14px;
}

.table-container {
  overflow-y: auto;
  height: 100px;
}

.table-striped>tbody>tr>.tdbold {
  font-weight: 700;
  color: #000;
  font-size: 14px !important;
}

.table-striped>tbody>tr>.tdspan {
  color: #353434;
  font-size: 14px;
  font-weight: 500;
}

.table-striped>tbody>tr>.tdbold,
.table-striped>tbody>tr>.tdspan {
  padding: 2px 8px;
}

.table-scroll .table-striped {
  scrollbar-width: thin;
  scrollbar-color: #ccc #fff;
  height: 90px;
  overflow-y: auto;
}

.button-container1 a,
.button-cont a {
  color: #9f0404;
  border: 1px solid #9f0404;
  padding: 3px 8px;
  font-size: 12.5px;
  border-radius: 2px;
  text-align: center;
  transition: 1s;

}

.button-container1 a:hover,
.button-cont a:hover {
  color: #fff;
  background: #9f0404;
}

.button-container1 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.button-container1 button {
  background: transparent;
  color: #003fa7;
  border: 1px solid #003fa7;
  padding: 2px 8px;
  font-size: 11.5px;
  cursor: pointer;
  border-radius: 2px;
  text-align: center;
  margin-right: 10px;
}

.compare-add {
  display: flex;
  justify-content: flex-start !important;
}

.compare-checkbox {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: 1px solid #003fa7;
  cursor: pointer;
  border-radius: 2px;
}

.compare-checkbox input[type="checkbox"] {
  display: none;
}

.compare-checkbox i {
  font-size: 18px;
  color: #ff8903;
  transition: transform 0.2s, color 0.2s;
}


#compare-btn-wrapper {
  display: none;
  position: fixed;
  top: 150px;
  right: 20px;
  z-index: 9999;
}

#compare-btn {
	background: #e77c32;
}

#compare-btn:hover {
  color: #fff !important;
}

/******************************* Home page 2nd section end **************************/

/******************************* home page 3rd section start **************************/

.dl-im h2,
.dl-im h3,
.dl-im h4,
.dl-im h5,
.dl-im h6 {
  font-size: 18px;
  font-weight: 700;
  color: #022052;
  font-family: "Mulish", sans-serif;
  letter-spacing: 0.4px;
}

.cataphfl {
  margin-right: -2px;
  margin-left: -2px;
}

.con-img-car {
  width: 25%;
  padding: 3px !important;
  display: flex;
  flex-direction: column;
  height: inherit;
}

.in-au-eq {
  padding: 10px;
  box-shadow: 0 0 2px 0 #9daeb9;
  border-left: 2px solid #aabddf;
  display: flex;
  flex-direction: column;
  height: inherit;
  flex: 1;
}

.dl-im img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.dl-dil-cin {
  font-size: 14px;
  color: #444444;
  text-align: start;
  scrollbar-width: thin;
  scrollbar-color: #ccc #fff;
  height: 90px;
  overflow-y: auto;
  border: 1px solid #ccc;
}

.hover-icons {
  position: absolute;
  top: 50px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;

}

.con-img-car,
.sec-img-con {
  position: relative;
}

.con-img-car:hover .hover-icons,
.sec-img-con:hover .hover-icons {
  opacity: 1;
}

.hover-icons a,
.hover-icons button {
  background: transparent !important;
  border-radius: 4px;
  padding: 1px 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 16 px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: none;
}

.hover-icons a {

  border: 1px solid #003fa7;
  color: #4b7dce;
}

.hover-icons button {
  border: 1px solid #9f0404;
  color: #9f0404;
  background: transparent;
}



/******************************* home page 3rd section  end **************************/

/******************************* home page 4th start **************************/
/******************************* General Styles ******************************/
.incu-box-hd h2,
.incu-box-hd h3,
.incu-box-hd h4,
.incu-box-hd h5,
.incu-box-hd h6 {
  font-size: 17px;
  color: #0d0d0d;
  text-decoration: none;
  font-size: 16.5px;
  color: #033976;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 7px;
}

.sub-box h2,
.sub-box h3,
.sub-box h4,
.sub-box h5,
.sub-box h6 {
  font-size: 17px;
  color: #0d0d0d;
  text-decoration: none;
  font-size: 16.5px;
  color: #033976;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 7px;
  padding-left: 10px;
}

.sub-cat-gory {
  margin-top: 10px;
}

.incubator-main {

  margin-bottom: 17px;
}

.incu-box-hd span {
  font-size: 10.5px;
  color: #ccc;
}

.incu-img img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
}

.text-warning,
.button-cont {
  margin-top: 10px;
}

/******************************* Responsive Design ****************************/
/* @media (max-width: 991px) {
  .incubator-main {
    width: 50%;
    padding: 0 10px;
  }

  .incu-box-hd h2,
  .incu-box-hd h3,
  .incu-box-hd h4,
  .incu-box-hd h5,
  .incu-box-hd h6 {
    font-size: 15px;
  }

  .incu-img img {
    width: 70px;
  }
}

@media (max-width: 575px) {
  .incubator-main {
    width: 100%;
    padding: 0 5px;
  }

  .incu-box-hd h2,
  .incu-box-hd h3,
  .incu-box-hd h4,
  .incu-box-hd h5,
  .incu-box-hd h6 {
    font-size: 14px;
  }

  .incu-img img {
    width: 60px;
  }

}

@media (max-width: 320px) {
  .incubator-main {
    width: 100%;
    padding: 0 5px;
  }

} */



/******************************* home page 4th end **************************/
/******************************* home page 5th start **************************/
.product-img {
  position: relative;
  overflow: hidden;
  background: #ecebe7;
}

.product-img img {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto;
}

.option-btn {
  background: none;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 4px;
  border: none;
}

.product-info {
  margin-top: 10px;
}

.product-info h2,
.product-info h3,
.product-info h4,
.product-info h5,
.product-info h6 {
  font-size: 17px;
  margin-bottom: 5px;
  color: #161616;
}

.category {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
}

.stars {
  color: #f0c040;
  font-size: 8px;
}

/******************************* Autoclave Equipment page start **************************/
.category-icon h2,
.category-icon h3,
.category-icon h4,
.category-icon h5,
.category-icon h6 {
  font-size: 16px;
  height: 37px;
  font-weight: 800;
  margin-bottom: 3px;
  margin-top: 3px;
  color: #2c2c2c;
  align-items: center;
  justify-content: center;
  display: flex;
}

.category-icon {
	text-align: center;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 2px;
}

.category-icon img {
	width: 160px;
	height: 160px;
	object-fit: contain;
	border: #e5e5e5 solid 1px;
	background: linear-gradient(to bottom, #f0f6ff, #fbfbfd);
}

.boxp-1 {
  padding: 3px !important;
  width: 16.66%;
}


/**************************** footer start ************************/
.footer {
  border-top: 4px solid #033976;
  color: #f1724b;
  padding: 50px 30px 0 30px;
  margin-top: 90px;
}

.contact-info {
  width: 25%;
  margin-bottom: 20px;
}

.contact-info img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.contact-info span {
  font-size: 20px;
  font-weight: 800;
  color: #e77c32;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  margin-bottom: 6px;
}

.contact-info ul li a {
  font-size: 15px;
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
  font-weight: 400;
}

.contact-info ul li a:hover {
  color: #ec8e18;
}

.contact-info p {
  margin: 10px 0;
  font-size: 15px;
  color: #0743a9;
  font-weight: 800;
}

.subscribe {
  margin-top: 12px;
}

.footer-col p span {
  font-size: 15px;
  color: #000;
}

.footer-col span {
  font-weight: 400;
}

.subscribe-form input {
  width: 100%;
  flex: 1;
  padding: 0 5px;
  border: none;
  outline: none;
  background: transparent;
  color: #000;
  border: 1px solid #ccc;
  font-size: 14.5px;
  border-radius: 2px;
}

.subscribe-form .footer-btn {
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  height: auto;
  border-radius: 0 2px 2px 0;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  -ms-border-radius: 0 2px 2px 0;
  -o-border-radius: 0 2px 2px 0;
}

.footer-end p {
	color: #000;
	border-top: 1px solid #ccc;
	text-align: center;
	padding: 10px;
	margin: 0;
	font-size: 15px;
}

.subscribe-form {
  display: flex;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 50px 0 0 50px;
}

.subscribe-form input[type="email"]::placeholder {
  color: #aaa;
}

.subscribe-form .footer-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 0 20px;
  height: 100%;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.subscribe-form .footer-btn:hover {
  background: #0056b3;
}

.subscribe-form .footer-btn i {
  font-size: 18px;
}



/******************************* footer end ****************************/


/******************************Contact  PAGE  Start*******************************/
.contact-con {
	width: 991px;
}

.row.cont-cont {
  margin-top: 60px;
}

.left-side,
.right-side {
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-top: 2px solid #a5c7eb;
  margin-left: 10px;
}

.left-side {
  flex: 1;
  width: 25%;
  text-align: center;
}

.right-side {
  flex: 2;
  width: 75%;
  padding: 20px;
}

.details {
  margin: 10px;
}

.details i {
  font-size: 30px;
  color: #0543a8;
  margin-bottom: 10px;
}

.details h2, .details h3, .details h4 {
	font-size: 21px;
	margin-bottom: 8px;
	color: #e77c32;
	font-weight: 700;
}

.details p {
	font-size: 14px;
	color: #2c2c2c;
}

.details a {
	color: #2c2c2c;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.details a:hover {
  text-decoration: underline;
}

.right-side h5 {
	font-size: 23px;
	text-align: start;
	color: #e77c32;
	font-family: "Mulish", sans-serif;
	font-weight: 800;
}

.right-side p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-box input, .input-box textarea {
	width: 100%;
	padding: 5px 10px;
	font-size: 14px;
	border: 1px solid #a5c7eb;
	border-radius: 2px;
}

.input-box textarea {
  height: 120px;
  resize: none;
}

.input-box input:focus,
.input-box textarea:focus {
  outline: #007bff;
  box-shadow: 0 0 2px 0 #007bff;
}

.con-btn-Send {
  width: 15%;
  background-color: #0743a3;
  color: #fff;
  border: none;
  padding: 5px;
  font-size: 13px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.con-btn:hover {
  background-color: #0056b3;
}

/******************************Contact  PAGE  End*******************************/

/**************************** Error page start ************************************/
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page .content-er {
  margin: 50px 0;
  max-width: 600px;
  text-align: center;
}

.content-er h1 {
  font-size: 18vh;
  line-height: 1em;
}

.content-er .page-not {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
  max-width: 700px;
  font-size: 1.5em;
}

.content-er .page-pr {
  font-size: 1em;
  color: #0d0d0d;

}

.content-er .err-btns {
  margin: 15px 0;
  display: inline-flex;
}

.content-er .err-btns a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  border: 2px solid #ff5722;
  color: #ff5722 !important;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.content-er .err-btns a:hover {
  background: #ff5722;
  color: #fff !important;
}


/******************************Error PAGE End*******************************/

.card-img-top {
  height: 180px;
  object-fit: contain;
  width: 180px;
}

.card-body {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.card-text {
  flex-grow: 1;
  overflow: hidden;
}

.card table {
  font-size: 14px;
  margin-bottom: 10px;
}

.btn {
  align-self: start;
  padding: 4px 12px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.card-text strong {
  color: #383737;
  font-weight: 500;
}

.card-text p {
  font-size: 14px;
}

.btn-cat {
  border: 1px solid #4c8677;
  color: #4c8677;
  padding: 6px 16px;
  border-radius: 4px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cat:hover {
  background-color: #4c8677;
  color: #fff;
  text-decoration: none;
}

.colorful-card {
  color: #0056b3;
  border-radius: 2px;
  padding: 20px;
}

/******************************Single-Catalog PAGE Start*******************************/
.body1_part1,
.body2,
.body3 {
  box-shadow: 0 0 30px #37b8fe29;
  margin-bottom: 10px;
  border: 1px solid #37b8fe29;
}

.cat_mtop {
  margin-top: 50px
}

.catalog_body {
  max-width: 700px;
  height: auto;
  margin: auto auto 50px;
  background-color: #fff
}

.download_box {
  padding-left: 50px;
  width: 350px;
  height: 0;
  border-radius: .2rem;
  margin: 10px 0 30px
}

.download_btn,
.download_btn:hover {
  background-color: #fa7939;
  border: none;
  color: #fff;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 17px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 700;
}

.catalog_head,
.check_icon,
.download_1,
.fa-chevron-circle-right {
  color: #2f8e94
}

.download_1 {
  font-size: 17px;
  padding-top: 25px
}

.text-name h1 {
  margin-bottom: 0
}

.body1_part1 {
  height: 840px;
  position: relative
}

.catalog_cover {
  background-image: url(../images/catalog-bg.png);
  background-size: cover;
  max-width: 100%;
  height: 840px;
  margin: auto
}

.catalog_logo {
  width: 30%;
  float: right;
  margin: 30px 30px 0 0
}

.catalog_img {
  width: 45%;
  margin-top: 50px;
  vertical-align: middle
}

.catalog_head {
  font-size: 32px;
  text-shadow: 1px 0 #5f6788;
  font-weight: 700;
  margin: 60px 30px 0 20px;
  line-height: 49px
}

.catalog_contact {
	color: #272727;
	text-shadow: 1px 0 #5f6788;
	margin-top: 15px;
	margin-left: 20px;
	font-weight: 200;
	text-align: left;
	font-family: "Mulish", sans-serif;
}

.body2,
.body3 {
  height: auto
}

.body_center {
  margin: 0 25px
}

.catalog_subhead {
  color: #1a63be;
  font-size: 21px;
  font-weight: 700;
  padding: 40px 0 4px 10px;
}

.catalog_text {
  margin: 0 10px;
  line-height: 1.6rem
}

.table,
td,
th {
  border: 1px solid #5f6788;
  margin-top: 5px
}

.mobile_bottom {
  padding-bottom: 15px
}

li,
ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.catalog_footerlog {
  width: 25%;
  margin-top: 230px
}

.table>tbody>tr>td {
  font-size: 15px;
  line-height: 22px;
  padding: 5px !important
}

.single-catalog .text-center h1 {
  font-family: "Mulish", sans-serif;
  font-size: 25px;
  font-weight: 700;
  position: relative;
  display: block;
  letter-spacing: 0.3px;
}

.single-catalog .download_btn,
.download_btn:hover {
  padding: 7px 22px;
  font-size: 15px;
  margin-top: 10px;
  margin: 10px 0 30px !important;
}

.single-catalog .catalog_footerlog {
  width: 30%;
  margin-top: 50px;
  margin-bottom: 10px;
}

.single-catalog .mobile_bottom {
  padding-bottom: 30px !important;
}

.single-catalog .catalog_head {
  font-size: 24px;
  line-height: 130%;
}

.single-catalog>.row {
  display: flex;
}

.catalog_head,
.check_icon,
.download_1,
.fa-chevron-circle-right {
  color: #1a63be;
  font-weight: 700;
  text-shadow: none;
}

html .container.single-catalog a {
  display: unset;
  text-shadow: none;
}

.mobile_bottom a,
.catalog_contact a {
  color: black;

}

li.catalog_text {
  position: relative;
  padding-left: 0;
}

li.catalog_text::before {
  position: absolute;
  left: -2px;
  top: 0;
  bottom: auto;
  right: auto;
  font-family: bootstrap-icons;
  font-size: 14px;
  color: #2679a6;
  content: "";
  display: none;
}


/*************************** Lab Equipment start *****************************/
.breadcrumb-sec .breadcrumb {
  margin: 0;
}

.fa-solid,
.fas {
  font-weight: 900;
  color: #0543a8;
}

.breadcrumb-item.active {
  color: #0543a8 !important;
  font-weight: 800;
}

.breadcrumb-item a {
  color: #363636;
  text-decoration: none;
}

.breadcrumb-sec {
  background: transparent;
  padding: 8px 0;
  border: 1px solid #e7edf3;
  border-top: 0;
  font-size: 13px;

}

.lab-title h1,
.lab-title h2,
.lab-title h3,
.lab-title h4,
.lab-title h5,
.lab-title h6 {
  font-size: 29px;
  text-align: start;
  margin: 55px 0 3px;
  color: #e77c32;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
}

.lab-title p {
  font-size: 15px;
  text-align: justify;
  margin-bottom: 5px;
}

.list-cont h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  background: #d6eaff;
  padding: 10px;
}

.list-cont .li-icon {
  list-style: none;
}

.list-cont .li-icon li {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
  z-index: 0;
}

.li-icon i {
  margin-right: 10px;
  color: #0866a5;
  transition: color 0.3s ease;
}

.list-cont .li-icon li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f1724b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}

.list-cont .li-icon li:hover::before {
  transform: scaleX(1);
}

.list-cont .li-icon li:hover {
  color: #fff;
}

.list-cont .li-icon li:hover i {
  color: #fff;
}

.bio-fre h2,
.bio-fre h3,
.bio-fre h4,
.bio-fre h5,
.bio-fre h6 {
  text-align: start;
}



/******************* Lab Equipment end ******************/

/******************* Sub Category Start *****************/

.dl-sub-cat a {
  display: inline-block;
  border: 1px solid #87ace8;
  padding: 2px 10px;
  text-decoration: none;
  color: #0543a8;
  font-size: 13.5px;
  letter-spacing: .8px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 600 !important;
  margin-bottom: 10px;
}

/******************* Sub Category end *****************/

/******************* setion page start ******************/
.incubator-main-Gauge {
  width: 50%;
}

.filter-ts-er {
  width: 20%;
  padding: 5px;

}

.scs-pg-ri {
  width: 80%;
}

.sec-img-con {
  width: 33.33%;
  padding: 3px;
  display: flex;
  flex-direction: column;
  height: inherit;
}

.sec-au-eq {
  padding: 10px;
  margin-top: 16px;
  box-shadow: 0 0 2px 0 #9daeb9;
  border-top: 3px solid #c6dceb;
  display: flex;
  flex-direction: column;
  height: inherit;
  flex: 1;
}

.filter-list {
  margin-top: 15px;
  box-shadow: 0 2px 5px #ccc;
  padding: 10px;
  border-top: 3px solid #0543a8;
}

.Filt-wr {
  padding: 10px;
  background: #fff;
}

.sub-sec-tog p {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.fil-chck {
  padding-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-start;
}

.fil-chck span {
	font-size: 13px;
	line-height: 120%;
	padding-left: 3px;
	color: #0e0e0e;
}

/******************* setion page end ******************/
/****************** product detils page start  *************************/
.pr-img-box {
  position: sticky;
  top: 10px;
  align-self: start;
  z-index: 1;
  margin: 0;
}

.main-image {
  max-height: 350px;
  max-width: 100%;
  object-fit: contain;
}

.small-image-container {
  padding: 10px 5px;
}

.image-box {
  height: 80px;
  width: 80px;
  cursor: pointer;
  border: 1px solid #d9e9ee;
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.image-box .image {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.detl-btn-bx {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.detl-btn-bx button {
  border: 1px solid #003fa7;
  color: #fff;
  background-color: #003fa7;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 600;
}

.detl-btn-bx button:hover {
  background: #003fa7;
  color: fff;
}

.detl-btn-bx button i,
.detl-btn-bx a i {
  margin-right: 8px;
}
.lab-title-detl h1 {
	font-size: 25px;
	text-align: start;
	margin-top: 30px;
	color: #e77c32;
	font-family: "Mulish", sans-serif;
	font-weight: 600;
}

.lab-title-detl p {
	font-size: 14px;
	text-align: justify;
}

.detl-btn-bx a {
  border: 1px solid #8e0422;
  padding: 4px 10px;
  text-align: center;
  color: #8e0422;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 600;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 0;
  padding: 3px 0;
  font-weight: 800;
}

.spec-table h2,
.spec-table h3,
.spec-table h4,
.spec-table h5,
.spec-table h6 {
  font-size: 20px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #003fa7;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
}

.spec-table h2::before,
.spec-table h3::before,
.spec-table h4::before,
.spec-table h5::before,
.spec-table h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  border-left: 2px solid #ec8e18;

}

.spec-table th {
  background-color: #2aa6a6;
  color: white;
  padding: 10px;
  text-align: left;
  font-size: 14px;
}

.spec-table tr> :first-child {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 15px;
}

.spec-table tr> :last-child {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
}

.spec-table tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.features-section ul {
  padding: 10px 15px;
  margin: 0;
}

.features-section ul li {
  margin-bottom: 6px;
  color: #333;
  font-size: 12.5px;
}

.spec-table p {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 2px;
  background: #003fa7;
  width: 100%;
  color: #fff;
  padding: 2px 10px;
}

.spec-ul-li li {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  position: relative;
  padding-left: 20px;
}

.prodetail {
	margin-top: 35px;
}

.spec-ul-li li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #e77c32;
  font-size: 20px;
  top: -2px;
}
.grid-link__title h2, .grid-link__title h3, .grid-link__title h4, .grid-link__title h5, .grid-link__title h6 {
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	padding: 0;
   font-family: "Mulish", sans-serif;
}


/****************** product detils page end  ***************************/
/******************* catalogs start **********************/


.cata-box-wrap {
	width: 25%;
	padding: 3px;
	display: flex;
	flex-direction: column;
	height: inherit;
}

.cata-box {
	border-radius: 2px;
	border: 1px solid #d0e9f0;
	box-shadow: none;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	height: inherit;
	flex: 1;
}

.cata-title h2,
.cata-title h3,
.cata-title h4,
.cata-title h5,
.cata-title h6 {
  font-size: 18px;
  font-weight: 700;
  color: #022052;
  padding: 10px;
  text-align: start;
  letter-spacing: 0.6px;
  transition: 0.5s all;
  font-family: "Mulish", sans-serif;
}

.cata-des-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.cata-img-wrap {
  height: 145px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image-box {
  text-align: center;
}

.cata-img-wrap img {
  object-fit: cover;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.cata-des-wrap .cata-sub-list {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
}

.cata-des-wrap .cata-sub-list ul li .sub-cata-btn {
  text-align: left;
  font-size: 14px;
  line-height: 135%;
  text-transform: capitalize;
  letter-spacing: 0;
  background: transparent;
  margin: 0 10px;
  color: #000;
  font-weight: 700;
  position: relative;
  padding: 3px 0px;
  border: 0;
}

.cata-des-wrap .cata-sub-list ul li:not(:last-child) {
	border-bottom: 1px solid #ccc;
	padding-bottom: 2px;
	padding-top: 1px;
}
.cata-des-wrap .cata-sub-list ul li {
  line-height: 100%;
}

.cata-des-wrap .cata-sub-list ul li:last-child .sub-cata-btn {
  padding-bottom: 0;
}

.cata-des-wrap .cata-sub-list ul {
  max-height: 74px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f0f0f0;
  border-radius: 10px
}

.cata-popup-wrap .modal-dialog {
  max-width: 680px;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.popu-wrap .modal-header {
  justify-content: center;
  padding: 10px;
}

.cata-popup-wrap .modal-body {
  padding: 30px 20px;
}

.cata-pop-wrap {
  height: 150px;
  overflow-y: auto;
  scrollbar-width: none;
}

.cata-pop-wrap ul {
  display: flex;
  flex-wrap: wrap;
}

.cata-pop-wrap ul li {
  width: 50%;
}

.pop-cata-btn {
  color: #015bb3;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  border: 2px solid #e77c32;
  display: block;
  text-align: left;
  border-radius: 3px;
  transition: 0.5s all;
  padding: 6px 10px 6px 29px;
  margin: 15px 7px 0;
  background-color: #fff;
  position: relative;
  letter-spacing: 0.3px;
}

.pop-cata-btn::before {
  font-family: bootstrap-icons;
  font-size: 18px;
  transition: 0.5s all;
  position: absolute;
  top: 6px;
  left: 7px;
  right: auto;
  bottom: auto;
  content: "\f63e";
  color: #de0404;
  font-weight: 700;
}

.popu-wrap .modal-title {
  font-weight: 700;
  line-height: 100%;
  display: block;
  position: relative;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-size: 23px;
  text-align: center;
  letter-spacing: 0.3px;
  background: -webkit-linear-gradient(0deg, #0155b5 0%, #0067B0 16%, #4e9bf2 98%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popu-wrap .btn-close {
  background: #ed223d;
  opacity: 1;
  border: 1px solid #ed223d;
  border-radius: 50%;
  position: absolute;
  left: auto;
  right: -13px;
  bottom: auto;
  top: -9px;
  width: 25px;
  height: 25px;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.pop-cata-btn:hover {
  background: #015bb3;
  color: #fff;
}

.popu-wrap .btn-close:hover {
  background: #fff;
  color: Red;
}

.catalog-modal {
  border: 2px solid #0543a8;
  border-radius: 6px;
}

.catalog-content {
  border: 1px solid #015bb3;
  border-radius: 5px;
}

.modal-body {
  padding: 0 !important;
}

.catalog-header {
  background: #015bb3;
  color: #fff;
  font-weight: 700;
  border-radius: 0;
  padding: 7px 10px;
}

/******************* catalogs start **********************/
/**************************** About PAGE CSS Start **************************/
.abpgcnt p {
	font-size: 15px;
	text-align: justify;
	margin-bottom: 10px;
}

.abpgcnt .why-cho {
	/* margin-top: 20px; */
	font-size: 20px;
	font-weight: 600;
	position: relative;
	display: inline-block;
	letter-spacing: 0.3px;
	color: #0140a8;
	padding-bottom: 0;
}

/**************************** About PAGE CSS END **************************/

/* **************************************SUB CATEGORY START********************************* */
.category-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Product grid */
.sub-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.sub-category-product {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.sub-category-product img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.sub-category-product .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.add-to-cart {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 0 0 4px 4px;
}

.sub-category-img h2,
.sub-category-img h3,
.sub-category-img h4,
.sub-category-img h5,
.sub-category-img h6 {

  font-size: 17px;
  margin: 0.5rem 0;
}

/* Subscription Section Styles */
.subscription {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: left;
  height: 120px;
  overflow-y: scroll;
}

.subscription h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

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

.subscription ul li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #555;
}

@media (max-width: 768px) {
  .sub-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sub-category-product h3 {
    font-size: 1rem;
  }

  .sub-category-product .price {
    font-size: 1rem;
  }

  .add-to-cart {
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .sub-category-grid {
    grid-template-columns: 1fr;
  }

  .sub-category-product h3 {
    font-size: 1rem;
  }

  .sub-category-product .price {
    font-size: 0.9rem;
  }
}

/* **************************************SUB CATEGORY END********************************* */
/* *******************************PRODUCT-DETEALIS START*********************************** */






.carousel-button.prev {
  left: 5px;
}

.carousel-button.next {
  right: 5px;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.product-thumbnails {
  display: flex;
  overflow-x: auto;
  margin-top: 10px;
}

.product-thumbnails img {
  width: 60px;
  height: 60px;
  margin: 0 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.product-thumbnails img:hover {
  opacity: 0.7;
}

.product-details h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.product-description {
  margin-bottom: 15px;
  color: #555;
}

.product-price {
  font-size: 1.5rem;
  color: #e60000;
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.catalog-section,
.specifications,
.faq-section {
  margin-top: 30px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.catalog-section a {
  display: block;
  color: #007bff;
  text-decoration: none;
  margin-bottom: 10px;
}

.catalog-section a:hover {
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.2rem;
  cursor: pointer;
  color: #007bff;
}

.faq-item p {
  display: none;
  margin-top: 10px;
}

.faq-item h3:hover {
  text-decoration: underline;
}

.similar-products {
  margin-top: 30px;
}

.similar-products h2 {
  margin-bottom: 20px;
}

.similar-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 10px;
  width: 95%;
}

.similar-product-card {

  text-align: center;
  padding: 15px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.similar-product-card img {
  max-width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.similar-product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.similar-product-card p {
  font-size: 1rem;
  color: #e60000;
  margin-bottom: 15px;
}

.similar-product-card button {
  padding: 10px;
  font-size: 0.9rem;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.similar-product-card button:hover {
  background-color: #0056b3;
}

.similar-product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-cont {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 10px;
}

*/
/* *******************************PRODUCT-DETEALIS END*********************************** */

/*******************************Compare page CSS Start*******************************/
.compare-page .table th {
  color: #0558b6;
  font-size: 15px;
  line-height: 160%;
  margin: 0 0;
  padding: 5px 10px;
  font-weight: 400;
  font-weight: 500;
}

.compare-page .table > tbody > tr > td, .compare-page .table > tbody > tr > td a {
	color: #333333;
	font-size: 14px !important;
	line-height: 140%;
	text-align: left;
	font-weight: 500;
	padding: 5px 10px !important;
}

.compare-page .table>tbody>tr>td a {
  padding: 0 !important;
}

.compare-cart-btn.addToCartBtn {
  background: #f49149;
  background-color: #f49149;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  line-height: 100%;
  padding: 8px 15px 8px 15px;
  font-size: 13px;
  border: 1px solid #33333361;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.3px;
}

.compare-cart-btn.addToCartBtn:hover {
  background: transparent;
  color: #333;
  border-color: #333;
}

.cart-compare>.detl-btn-bx>button {
  text-align: center;
}

.compare-page .trash_icon {
  position: absolute;
  top: 10px;
  left: auto;
  right: 10px;
  bottom: auto;
}

.compare-page .trash_icon .remove-compare1 {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  color: red;
  width: 20px;
  height: 20px;
}

.compare-page .trash_icon .remove-compare1::before {
  font-size: 15px;
  transition: 0.5s all;
  line-height: 100%;
  font-family: bootstrap-icons;
  font-weight: 400;
  content: "\f78b";
}

.table,
td,
th {
  border: 1px solid #5f6788;
  margin-top: 5px;
}

.compare-page .table>tbody>tr>td a .featured-image {
  height: 120px;
}

/*******************************Compare page CSS End*******************************/

/*******************************Compare page CSS Start*******************************/

.compare-page .table th {
	font-size: 16px;
	padding: 3px 8px;
}

.compare-page .table>tbody>tr>td {
  font-size: 12px;
  padding: 3px 8px !important;
}

.compare-page .table>tbody>tr>td a {
  font-size: 15px;
  padding: 3px 8px !important;
  font-weight: 500;
}

.compare-cart-btn.addToCartBtn {
  padding: 4px 8px 4px 8px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.compare-page .table {
	width: 100%;
	margin: 5px 0;
}

/*******************************Sitemap page CSS Start*******************************/
.indian {
    color: #2f8e94;
    font-size: 30px;
    font-weight: 700
}

.heating {
    color: #2e2d2d;
    font-size: 30px;
    font-weight: 700
}

.sitemap ul > li > a.l0bg {
	background: #e77c32;
}

.l1bg {
    background-color: #e77c32 !important;
}

.sitemap ul>li>a.l2bg {
    background-color: #0155b5 !important;
    color: #fff;
}

.sitemap ul {
    list-style: none;
    padding-left: 20px;
    margin: 0
}

.sitemap ul>li {
    border-left: solid #efefef 2px;
    padding-left: 25px;
    font-size: 14px;
}

.sitemap ul>li>a {
    display: inline-block;
    max-width: 500px;
    padding: 5px 10px;
    background: #047285;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    text-overflow: ellipsis;
    margin: 5px 0;
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
    position: relative;
    font-weight: 500;
    font-size: 14px;
}

.sitemap ul>li>a:hover {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5)
}

.sitemap ul>li:before {
    content: "" !important
}

.sitemap ul>li>a::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 25px;
    background: #efefef;
}

/*******************************Sitemap page CSS End*******************************/

@media (max-width: 991px) {
  .hover-icons {
  opacity: 1;
}

 .lab-title h1, .lab-title h2, .lab-title h3, .lab-title h4, .lab-title h5, .lab-title h6 {
	font-size: 23px !important;
	text-align: center !important;
	margin-top: 50px !important;
	color: #e77c32;
	font-family: "Mulish", sans-serif;
	font-weight: 800;
	margin-bottom: 10px !important;
}
  .main-title h1, .main-title h2, .main-title h3, .main-title h4, .main-title h5, .main-title h6 {
	font-size: 23px !important;
	text-align: center !important;
	margin-top: 40px !important;
	color: #e77c32;
	font-family: "Mulish", sans-serif;
	font-weight: 800;
	margin-bottom: 10px !important;
}

  .lab-title-detl h1 {
    font-size: 23px !important;
    text-align: start;
    margin-top: 20px !important;
    color: #e77c32;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    /* margin-bottom: 10px; */
  }

 .playbtn {
	width: 45px;
	height: 45px;
	position: fixed;
	display: inline-block;
	padding: 8px;
	color: #fff;
	transition: 0.5s;
	font-weight: 600;
	overflow: hidden;
	border-radius: 50%;
	background: #003fa7;
	border: 2px solid #003fa7;
	font-size: 10px;
	line-height: 100%;
	right: 11px;
	bottom: 0;
	z-index: 1000;
	animation: pulse 2s infinite;
	align-items: center;
	display: flex;
	justify-content: center;
}

  .dlogo {
    width: 180px;
    padding-top: 0;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .navwebste {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 0px;
    right: 0;
    height: 70vh;
    width: 40%;
    text-align: center;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.2);
    border-left: 1px solid #eee;
    animation: slideOut 0.5s ease forwards;
    z-index: 999;
    padding-top: 60px;
  }

  .navwebste.active {
    display: block;
    animation: slideIn 0.5s ease forwards;
  }

  .navwebste li {
    margin: 0;
  }

  .navwebste li a {
    padding: 5px 15px;
    display: block;
    text-align: left;
    border-bottom: 1px solid #ccc;
    color: #003fa7;
  }

  .close-menu {
    width: 37px;
    height: 37px;
    position: absolute;
    top: 10px;
    left: auto;
    font-size: 30px;
    color: #003fa7;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: block;
    padding: 0;
    right: 10px;
  }

  .navbarbox {
    position: relative;
  }

  .breadcrumb-sec {
    display: none;
  }
}