/*--------------------------------------------------------------
 * # General
 * --------------------------------------------------------------*/
body{
  /* background-color: #ebf0f1; */
  background-color: #fff;
}

.section-title h2{
  text-transform: none;
}

.border-bottom-1 {
  border-bottom: 1px solid #d9e4ee !important;
}

/*--------------------------------------------------------------
 * # Header
 * --------------------------------------------------------------*/
#header .logo img {
  height: 16px;
  margin-bottom: 9px;
}


.mobile-nav-lang,
.mobile-nav-search{
  display: none;
}


/*--------------------------------------------------------------
 * # Navigation Menu
 * --------------------------------------------------------------*/
/**
 * * Desktop Navigation
 * */
.navbar{
  flex: auto;
}

/**
 * * Mobile Navigation
 * */

@media (max-width: 991px) {
  .toolbar {
    display: none !important;
  }

  .navbar {
    flex: none;
  }

  .mobile-nav-lang,
.mobile-nav-search{
  display: block !important;
  margin-right: 8px;
  cursor: pointer;
}
}

/*--------------------------------------------------------------
 * # search-form
 * --------------------------------------------------------------*/

.search-form-wrap {
  /* position: absolute; */
  right: 0;
  top: 0;
  z-index: 9;
  transition: 0.3s all ease;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #efefef;
/* border-radius: 8px; */
border-radius: 100px;
margin-left: 30px;
}

.search-form-wrap .search-form {
  position: relative;
}

.search-form-wrap .search-form .form-control {
  width: 300px;
  border: none;
  box-shadow: 0 15px 20px -10px rgba(var(--color-black-rgb), 0.1);
  padding-left: 20px;
  padding-right: 40px;
  background-color: transparent;
  font-size: 14px;
}

.search-form-wrap .search-form .form-control:active,
.search-form-wrap .search-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.search-form-wrap .search-form .icon {
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.5;
  left: 10px;
}

.search-form-wrap .search-form .btn {
  position: absolute;
  top: 8px;
  right: 10px;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 16px;
}

.search-form-wrap .search-form .btn:active,
.search-form-wrap .search-form .btn:focus {
  outline: none;
  box-shadow: none;
}

.search-form-wrap.active {
  visibility: visible;
  opacity: 1;
}

.navbar-mobile .search-form-wrap{
  margin-left: 20px;
  margin-right:20px
}

/*--------------------------------------------------------------
 * # On Focus Section
 * --------------------------------------------------------------*/
.onfocus {
  /* padding: 60px; */
  /* background-color: #ebf0f1; */
  background-color: #fff;

}

.onfocus .video-play_ {
  min-height: 600px;
  /* background: linear-gradient(rgba(0,0,0, 0.4), rgba(0,0,0, 0.7)), url("/assets/img/video-en-cover.jpg") center center no-repeat;
 *   background-size: cover; */

  background: url(/assets/web/img/video-zh-cover.jpg) center center no-repeat;
  background-size: contain;
}

.onfocus .content {
  background: linear-gradient(rgba(var(--color-secondary-rgb), 0.5), rgba(var(--color-secondary-rgb), 0.8)), url("/assets/web/img/onfocus-content-bg.jpg") center center;
  background-size: cover;
  color: rgba(225,225,225, 0.8);
  padding: 40px;
}

@media (max-width: 992px) {
  /* .onfocus .video-play {
 *     min-height: 300px;
 *         background-color: #000;
 *           } */
}

@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}

.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}

.onfocus .content ul {
  list-style: none;
  padding: 0;
}

.onfocus .content ul li {
  padding-bottom: 10px;
}

.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.onfocus .content p:last-child {
  margin-bottom: 0;
}

.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
}

.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.onfocus .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px;
}

.onfocus .content .read-more:hover i {
  margin-left: 10px;
}

.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#0d6efd 50%, rgba(13, 110, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.onfocus .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(13, 110, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.onfocus .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.onfocus .play-btn:hover:after {
  border-left: 15px solid #0d6efd;
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



/*--------------------------------------------------------------
 * # feature
 * --------------------------------------------------------------*/
/* .onfocus .count-box i {
 *   display: block;
 *     font-size: 30px;
 *       color: #333;
 *         float: left;
 *           line-height: 0;
 *           } */

.feature .count-box img {
  display: block;
  font-size: 30px;
  color: #333;
  float: left;
  line-height: 0;
  width: 30px;
  height: auto;
}

.feature .count-box span {
  font-size: 20px;
  line-height: 24px;
  display: block;
  /*! font-weight: 700; */
  color: #006fbe;
  margin-left: 46px;
}

.feature .count-box span::after {
  display: block;
  content: ' ';
  border-bottom: 2px solid #006fbe;
  width: 30px;
  margin-top: 4px;
}

.feature .count-box p {
  padding: 5px 0 0 0;
  margin: 14px 0 0 46px;
  /*! font-weight: 600; */
  font-size: 14px;
  color: #646c55;
}

@media (max-width: 991px) {
  .feature {
    padding-top:0 !important;
    padding-bottom:0 !important;
  }
  .feature .border-end{
    border:none !important;
  }

}

/*--------------------------------------------------------------
 * # Footer
 * --------------------------------------------------------------*/

#footer {
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer h3 {
  font-family: "Raleway", sans-serif;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  text-align: left;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  /* letter-spacing: 3px; */
  color: #fff;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #3c4133;
  color: #fff;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #006fbe;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;

}
/*
 * #footer .footer-top h4::before,
 * #footer .footer-top h4::after {
 *   content: "";
 *     position: absolute;
 *       left: 0;
 *         bottom: 0;
 *           height: 2px;
 *           }
 *
 *           #footer .footer-top h4::before {
 *             right: 0;
 *               background: #3c4133;
 *               }
 *
 *               #footer .footer-top h4::after {
 *                 background: #94c045;
 *                   width: 60px;
 *                   } */

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 5px 0 0 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 0 0 15px 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
  color: #006fbe;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
  border-radius: 4px 0 0 4px;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #94c045;
  border: 0;
  border-radius: 0 4px 4px 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #789d35;
}

/*--------------------------------------------------------------
 * # hero sub
 * --------------------------------------------------------------*/
#hero-sub {
  width: 100%;
  height: 75vh;
  background: url(/assets/img/banner-products.jpg) top center no-repeat;
  background-attachment: scroll;
  background-size: contain;
  position: relative;
  margin-bottom: -140px;
  z-index: 1;
  margin-top: 70px;
}

/* #hero-sub::before {
 *   content: "";
 *     background: rgba(60, 65, 51, 0.4);
 *       position: absolute;
 *         bottom: 0;
 *           top: 0;
 *             left: 0;
 *               right: 0;
 *               } */

@media (min-width: 1024px) {
  /* #hero-sub {
 *     background-attachment: fixed;
 *       } */
}

/* @media (max-width: 768px) {
 *   #hero-sub {
 *       height: 100vh;
 *         }
 *         }
 *
 *         @media (max-height: 500px) {
 *           #hero-sub {
 *               height: 120vh;
 *                 }
 *                 } */


/*--------------------------------------------------------------
 * # main sub
 * --------------------------------------------------------------*/
#main-sub{
  margin-top: -5vw;
  z-index: 3;
  position: relative;
}

#main-sub .container.content{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  background: #fff;
  margin-bottom: 70px;
}

/*--------------------------------------------------------------
 * # news center
 * --------------------------------------------------------------*/
.news-item {
  padding: 40px 0;
}

.news-item .title,.news-item .readmore {
  cursor: pointer;
}

.news-item:hover{
  background-color: #006fbe;
  padding: 40px 0 40px 20px !important;
}

.news-item:hover small,.news-item:hover h5,.news-item:hover i{
  color:#fff !important;
}

/*--------------------------------------------------------------
 * # Float contact button
 * --------------------------------------------------------------*/
.float-contact {
  position: fixed;
  right: 15px;
  bottom: 150px;
  z-index: 996;
  background: #006fbe;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.float-contact i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.float-contact:hover {
  background: #0087e7;
  color: #fff;
}

.float-contact.call{
  bottom: 200px;
}


/*--------------------------------------------------------------
 * # Products
 * --------------------------------------------------------------*/
.products {
  background: #fff;
  padding: 60px 0;
}

.products .product {
  margin-bottom: 20px;
  overflow: hidden;
}

.products .product .product-img {
  position: relative;
  overflow: hidden;
}

.products .product .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
  background: rgba(0, 111, 190, 0.8);
}

.products .product .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.products .product .social a:hover {
  color: #006fbe;
}

.products .product .social i {
  font-size: 18px;
  margin: 0 2px;
}

.products .product .product-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.products .product .product-info h4.underline::after {
  display: block;
  content: ' ';
  border-bottom: 2px solid #006fbe;
  width: 30px;
  margin-top: 4px;
}

.products .product .product-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #006fbe;
}

.products .product .product-info p {
  /* font-style: italic; */
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.products .product .product-info a {
  color: #444;
}

.products .product:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}


/*--------------------------------------------------------------
 * # richContent
 * --------------------------------------------------------------*/
.richContent img {
  max-width: 100% !important;
}


/*--------------------------------------------------------------
 * # Pages styles
 * --------------------------------------------------------------*/

/* pages-about */
@media (min-width: 1024px) {
  .pages-about .swiper-slide-active {
    /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
 *     border: 3px solid #006fbe; */
    width: 35% !important;
  }

  .pages-about .swiper-slide-prev,
  .pages-about .swiper-slide-next {
    width: 26% !important;
  }
}

/* pages-contact */
.pages-contact .iw_poi_title {
  color: #CC5522;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  padding-right: 13px;
  white-space: nowrap
}

.pages-contact .iw_poi_content {
  font: 12px arial, sans-serif;
  overflow: visible;
  padding-top: 4px;
  white-space: -moz-pre-wrap;
  word-wrap: break-word
}

.pages-contact #platform+div {
  display: none;
}


/*--------------------------------------------------------------
 * # Antibody Products
 * --------------------------------------------------------------*/

#antibody-products .list-group-item {
  border: none;
  padding-top: 12px;
  padding-bottom: 12px;
}

#antibody-products .list-group-item.active{
  font-size: 1.28rem;
  color: #4d4d4d;
  font-weight: normal;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
  padding-top: 15px;
  padding-bottom: 15px;
}

#antibody-products .list-group-item .form-check-input:checked {
  background-color: #006fbe;
  border-color: #006fbe;
}

#antibody-products .letter-index {
  width: 100%;
  position: relative;
  background-color: #f9f9f9
}

#antibody-products .letter-index dt {
  margin: 0;
  font-size: 1.28rem;
  color: #4d4d4d;
  font-weight: normal;
  margin-right: 10px
}

#antibody-products .letter-index dl {
  list-style: none;
  padding: 0;
  margin: -5px;
  display: flex;
  flex-wrap: wrap;
  /* padding: 20px */
  padding: 20px 12px;

}

#antibody-products .letter-index dl dd {
  flex: 1;
  margin-bottom:0;
}

#antibody-products .letter-index dl dd a {
  font-size: 1.28rem;
  color: #999;
  display: block;
  line-height: 28px;
  text-align: center;
  transition: all .15s ease-in-out
}

#antibody-products .letter-index dl dd a:hover,
#antibody-products .letter-index dl dd a.active {
  color: #fff;
  background-color: #006fbe
}

#antibody-products .products.list tr:hover{
  cursor: pointer;
}

@media (max-width:960px) {
  #antibody-products .letter-index dl dt{
    width:100%
  }

  #antibody-products .letter-index dl dd a{
    font-size: 12px;
  }

  #antibody-products .products.list{
    font-size: 12px;
  }
}
