/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap");
html,
body {
  margin: 0;
  font-size: 100%;
  font-family: "Open Sans", sans-serif;
  background: #fff;
}
body a {
  text-decoration: none;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}
a:hover {
  text-decoration: none;
}
input[type="button"],
input[type="submit"] {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}
textarea {
  resize: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Zen Antique", serif;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
}
label {
  margin: 0;
}
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;

  z-index: 1001;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #ffffff;
  z-index: 1000;
  -webkit-transform: translateX(0); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(0); /* IE 9 */
  transform: translateX(0); /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%); /* IE 9 */
  transform: translateX(-100%); /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%); /* IE 9 */
  transform: translateX(100%); /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
  visibility: hidden;

  -webkit-transform: translateY(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-100%); /* IE 9 */
  transform: translateY(-100%); /* Firefox 16+, IE 10+, Opera */

  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}

/*-----------------css by Dinesh-------------------------*/
#PRODUCTWrap1 h1 {
  padding: 0.5em 0;
  font-size: 30px;
  color: #0866b1;
  font-weight: 500;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .textOverImage {
    background-size: cover !important;
  }
}
.textOverImage {
  position: relative;
  width: 100%;
  height: 312px;
  float: left;
  /* margin: 5px; */
  font-size: 0.8em;
  background-size: 100%;
  background-position: center;
  transition: 0.5s;
  font-weight: normal;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 4px #000;
}

.textOverImage:hover {
  background-size: 110%;
}

.textOverImage:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(80%);
  background-color: #0866b1;
  color: #fff;
  padding: 04px;
  content: attr(data-title);
  transition: 0.5s 0.1s;
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
}

.textOverImage:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 8px;
  content: attr(data-text);
  transition: 0.5s;
  padding-top: 2em;
  margin-top: 8px;
  transform: translateY(100%);
  opacity: 0;
}

.textOverImage:hover:after {
  transform: translateY(0);
  transition: 0.5s 0.1s;
  opacity: 1;
}
.textOverImage:hover:before {
  transform: translateY(0);
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
}
nav.shrink {
  height: 100px;
  transition: all ease 0.5s;
  background: #0866b1; // Change background to after on scroll
}

nav.shrink #logo {
  padding: 10px;
  transition: all ease 0.5s;
}
#PRODUCTWrap {
  padding: 0 0 3em 0;
}
#AboutWrap {
  padding: 1em 0 3em;
}
.about-section h1 {
  padding: 0.5em 0;
  font-size: 30px;
  color: #0866b1;
  font-weight: 500;
}
.box-title {
  position: absolute;
  bottom: 0.5em;
  font-family: "Zen Antique", serif;
  font-size: 1.5rem;
  left: 5%;
  color: #fff;
}
.box-title1 {
  position: absolute;
  bottom: 1em;
  font-family: "Zen Antique", serif;
  left: 10%;
  right: 10%;
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgb(255, 255, 255) !important;
}
a.nav-link {
  padding: 15px !important;
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:active {
  background: #00559e !important;
}
.list {
  padding: 25px 35px;
  background: #ececec;
}
.col-sm-8.about-section {
  border-left: 1px dotted #bbbbbb;
  padding-left: 2em;
  text-align: justify;
}
footer.footer {
  background: #171717;
  padding: 2em;
  position: relative;
  color: #fcfcff;
  margin-top: 3em;
}

.emails {
  position: relative;
  display: table;
  list-style: none;
}
.emails a {
  color: #fff;
}
.emails a:hover {
  color: #a7a7a7;
  text-decoration: none;
}
.copyright {
  padding: 0.5em;
  background: #17171795;
  color: #fcfcff;
  position: relative;
}
.copyright p {
  margin-bottom: 0;
}
.copyright a {
  color: #171717;
}
.copyright a:hover {
  color: #000;
}
.padding {
  padding: 2em;
}
.nopadding {
  padding: 0 !important;
}
.padding-bottom {
  padding-bottom: 1em;
}
.padding-bottom1 {
  padding-bottom: 1.8em;
}
/*-------------sidebar---------------*/
.w_sidebar {
  border: 1px solid #ebebeb;
}
.sky-form {
  border: 1px solid #ebebeb;
  position: fixed;
  right: 9%;
  width: 300px;
}
.sky-form h4 {
  margin-top: 10px;
  background: #ececec;
  padding: 10px 20px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
}
.row1 {
  outline: 0;
  padding: 20px;
  overflow: auto;
  height: 575px;
}
.row1 ul li {
  list-style: none;
}
.col-4 {
  -ms-flex: 100%;
  flex: 0 0 0 !important;
  max-width: 100% !important;
}

/*-- treeview --*/
.css-treeview label {
  padding: 5px;
  margin: 2px;
  font-size: 0.9em;
  color: #545454;
  letter-spacing: 1px;
}

.css-treeview a {
  padding: 0px 0 0 0;
  margin: 2px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #545454;
  text-decoration: none;
}
.css-treeview ul,
.css-treeview li {
  list-style: none;
}

.css-treeview input {
  position: absolute;
  opacity: 0;
}

.css-treeview {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.css-treeview a:hover {
  text-decoration: underline;
}

.css-treeview input + label + ul {
  margin: 0 0 0 22px;
}

.css-treeview input + label + ul {
  display: none;
}

.css-treeview label,
.css-treeview label::before {
  cursor: pointer;
}

.css-treeview input:disabled + label {
  cursor: default;
  opacity: 0.6;
}

.css-treeview input:checked:not(:disabled) + label + ul {
  display: block;
}

.css-treeview label,
.css-treeview label::before {
}
.css-treeview label,
.css-treeview a,
.css-treeview label::before {
  display: inline-block;
  vertical-align: middle;
}

.css-treeview label {
  background-position: 18px 0;
}

.css-treeview label::before {
  content: "";
  width: 16px;
  margin: 0 22px 0 0;
  vertical-align: middle;
  background-position: 0 -32px;
}

.css-treeview input:checked + label::before {
  background-position: 0 -16px;
}

/* webkit adjacent element selector bugfix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .css-treeview {
    -webkit-animation: webkit-adjacent-element-selector-bugfix infinite 1s;
  }

  @-webkit-keyframes webkit-adjacent-element-selector-bugfix {
    from {
      padding: 0;
    }
    to {
      padding: 0;
    }
  }
}

.products-left i {
  color: #2fdab8;
}
.css-treeview {
  border: 1px solid #d2d2d2;
  position: fixed;
  top: 20%;
  right: 10%;
  font-family: "Zen Antique", serif;
  font-weight: normal;
}
.css-treeview h4,
.community-poll h4 {
  color: #0866b1;
  text-align: center;
  font-family: "Zen Antique", serif;
  background: #f7f7f7;
  padding: 17px 0;
  font-size: 1.2em;
  font-weight: 700;
  border-bottom: 1px solid #d2d2d2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tree-list-pad {
  padding: 30px 30px;
}
/*-- //treeview --*/
.productpageproducts img {
  border: 1px solid #d2d2d2;
}
.productpageproducts p {
  text-align: center;
  font-family: "Zen Antique", serif;
  font-size: 1em;
  color: #fff;
  background: #0866b1;
  padding: 10px;
  border: 1px solid #d2d2d2;
}

.productpageproducts a {
  text-decoration: none !important;
}
.pageheading {
  font-family: "Zen Antique", serif;
  font-size: 2em;
  padding: 3em 0px 1em 0px;
}
.pageheadinghomepage {
  font-family: "Zen Antique", serif;
  font-size: 2em;
  padding: 1em 0;
}
i.fa.fa-long-arrow-right {
  float: left;
  color: #0866b1;
}
/*--------------------biopharma-------------*/

.col-sm-12.seperateproductbox {
  border: 1px solid #d2d2d2;
  margin-bottom: 1em;
  padding: 0;
}
.col-sm-12.seperateproductheading {
  background: #81b1d7;
  color: #fff;
  margin-left: 0;
  margin-bottom: 1em;
}

.col-md-4.leftbox {
  background: #f7fcff;
  position: relative;
  padding: 5em 2em;
  border-right: 1px dotted gray;
}
.col-md-4.leftbox h3 {
  font-family: "Zen Antique", serif;
  font-weight: normal;
}
.leftbox p {
  margin-bottom: 5px;
}
.col-md-6.leftbox {
  padding-top: 5em;
}
.rightbox {
  padding: 2px 2em;
  position: relative;
  border-left: 1px dotted;
}
.rightbox h3 {
  font-family: "Zen Antique", serif;
  font-weight: normal;
  padding-bottom: 1em;
}
.rightbox input,
textarea {
  float: right;
  width: 50%;
}
.rightbox span {
  font-size: 11px;
  width: 100%;
  line-height: 1;
}
.rightbox p {
  font-family: "Zen Antique", serif;
}
.rightbox label {
  font-weight: normal;
}
.table td {
  width: 50%;
}
.padding-left {
  padding-left: 2em;
}

/*--------------------Responsive Code-----------------*/
@media screen and (max-width: 360px) {
  .css-treeview {
    display: none;
  }
  .seperateproductbox p {
    text-align: justify;
  }
  .seperateproductbox img {
    width: 100%;
    padding-bottom: 1em;
  }
  .pageheading {
    font-size: 2em;
    padding: 2em 0 0 0.5em;
  }
  .navbar .container {
    padding-left: 0 !important;
    margin-left: 0 !important;
    width: 100%;
    position: relative;
  }
  .navbar-brand {
    font-size: 200% !important;
    float: left !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
