/*GENERAL
--------------------------------------*/
:root {
    --c-green: #46a579;
    --c-green-2: #80caa8;
    --c-grey: #656565;
    --c-grey-2: #898989;
}

body {
    font: normal normal 14px 'Raleway', sans-serif;
    color: var(--c-grey);
}

body.pace-running:before {
    opacity: 1
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: currentColor;
}

a {
    -webkit-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

p {
    margin: 0;
}

:focus {
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#main-container {
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;
}

.parallax-mirror {
    opacity: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.pace-done #main-container {
    opacity: 1 !important
}

.pace-done .parallax-mirror {
    opacity: 1
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}

.inner-wrapper {
    width: 100%;
    max-width: 1360px;
    position: relative;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
}

.inner-wrapper.col-wrapper {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}

a.btn,
input.btn {
    height: 68px;
    padding: 0 40px;
    line-height: 68px;
    background: #1780eb;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    border-radius: 10px;
    margin: 0 auto 0 0;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

a.btn:hover,
input.btn:hover {
    background: #268ffb;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    text-transform: uppercase;
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

::-moz-placeholder {
    /* Firefox 19+ */
    text-transform: uppercase;
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:-ms-input-placeholder {
    /* IE 10+ */
    text-transform: uppercase;
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:-moz-placeholder {
    /* Firefox 18- */
    text-transform: uppercase;
    color: currentColor;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

:focus::-webkit-input-placeholder {
    opacity: .3
}

:focus::-moz-placeholder {
    opacity: .3
}

:focus:-ms-input-placeholder {
    opacity: .3
}

:focus:-moz-placeholder {
    opacity: .3
}

.gradient-font {
    background: #46a579;
    background: -moz-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: -webkit-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: linear-gradient(to bottom, #46a579 0%, #63ced2 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#46a579', endColorstr='#63ced2', GradientType=0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.low-letter {
    text-transform: none !important;
}

/*LAYOUT
--------------------------------------*/
#header {
    width: 100%;
    height: 125px;
    background: rgba(0, 0, 0, .4);
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 1;
    transition: top .3s, height .3s, background .3s;
}

#header.headroom--not-top {
    top: 0;
    height: 75px;
}

#header .inner-wrapper {
    height: 100%;
}

#logo {
    width: 230px;
    transition: width .3s;
}

#header.headroom--not-top #logo {
    width: 150px;
}

#logo img {
    width: 100%;
}

#nav {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

#nav ul {}

#nav li {
    display: inline-block;
    margin-left: 30px;
    position: relative;
}

#nav li:not(:last-child):before {
    display: block;
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    right: -18px;
    top: 50%;
    border-radius: 50%;
    background: #fff;
}

#nav a:hover,
#nav li a.active {
    color: var(--c-green-2);
}

#lang {
    position: absolute;
    right: 0;
    top: -30px;
    width: 300px;
    text-align: right;
}

#lang a {
    width: 30px;
    display: inline-block;
}

#lang img {
    width: 100%;
}

.slicknav_menu {
    position: absolute;
    right: 0;
    top: 18px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    width: 100%;
    display: none;
    z-index: 10;
}

.slicknav_nav {
    clear: both;
    color: #fff;
    margin: 0;
    background: rgba(0, 0, 0, .6);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    top: 54px;
    left: 0;
    text-align: center;
    color: #fff;
    padding: 15px 0 0;
}

.slicknav_nav ul {
    margin: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slicknav_nav li {
    margin-bottom: 30px;
    color: #fff
}

.slicknav_nav li a.active,
.slicknav_nav li a.focus,
.slicknav_nav a:hover {
    color: #00a651;
    background: unset;
}


.cebian{ position:fixed; right:10px; top:50%; transform:translateY(-50%); -webkit-transform:translateY(-50%);}
.cebian li { cursor:pointer; width:50px; height:50px; border-radius:100%; text-align:center; margin-bottom:5px}
.cebian li a{ display:block; width:100%; height:100%;}
.cebian li:first-child{ background:#333;}
.cebian li a i{ font-size:16px; color:#fff; line-height:50px;}
.cebian li:nth-child(2){ background:#00aff0;}
.cebian li:nth-child(3){ background:#3B5998;}
.cebian li:nth-child(4){ background:#0077B5;}
.cebian li:nth-child(5){ background:#25d366;}
.cebian li:nth-child(6){ background:#fe0000;}
.cebian li:nth-child(7){ background:#999;}
.slicknav_btn {
    background: unset;
    margin: 10px 5px 6px;
}

.slicknav_menu .slicknav_icon-bar {
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#footer {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    background: #252525;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*HOME
--------------------------------------*/
#home-main {
    width: 100%;
    height: 100vh;
    background: url(../images/home-main.jpg) no-repeat center / cover;
    padding-top: 265px;
}

#home-main-content {
    color: #fff;
    pointer-events: none;
}

#home-main-content>.inner-wrapper {
    align-items: flex-start;
}

#home-main-content h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 45px;
    text-transform: uppercase;
}

#home-main-content h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1;
    text-transform: uppercase;
}

#home-main-content h1 i {
    font-weight: 300;
    font-style: normal;
    display: block;
}

#home-main-content h1 strong {
    font-weight: 800;
    display: block;
	font-size:52px; margin-top:20px
}

#home-main-content p {
    font-size: 17px;
    font-weight: 500;
    max-width: 500px;
    text-align: justify;
}

#home-about {
    padding: 80px 0 40px;
}

#home-about-img {
    width: 100%;
    height: 360px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 15px;
}

#home-about-gal {}

#home-about-gal ul {
    margin: 0 -7px;
}

#home-about-gal li {
    padding: 0 7px;
}

#home-about-gal a {}

#home-about-gal img {
    width: 100%;
}

#home-about>.inner-wrapper {
    align-items: flex-start;
    justify-content: space-between;
}

#home-about h3 {
    color: var(--c-grey-2);
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
}

#home-about h3 strong {
    font-weight: 700;
}

#home-about h2 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    word-spacing: -2px;
}

#home-about h4 {
    color: #424242 font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#home-about h4 strong {
    color: #4aab87;
    font-weight: 700;
}

#home-about p {
    color: var(--c-grey);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: justify;
}

#home-about-menu {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--c-green);
    margin-bottom: 30px;
}

#home-about-menu li {
    display: inline-block;
    margin-right: 15px;
}

#home-about-menu li.active,
#home-about-menu li:hover {
    font-weight: 900;
}

#home-about-detail {
    height: 0;
    overflow: hidden;
    position: relative;
}



.flex{ display:flex; display: -webkit-flex; align-items:center;flex-wrap:  wrap ; justify-content:space-between}
.flex2{ display:flex; display: -webkit-flex; align-items:stretch;flex-wrap:  wrap ; justify-content:space-between}


.xinzengul01 li{ width:47%; margin-top:20px;}
.xinzengul01 li b{ display:block; padding-left:50px; background-size:35px auto; background-position:left center; background-repeat:no-repeat; line-height:40px; font-size:26px;}
.xinzengul01 li p{ font-size:14px; color:#7a7a7a; padding-left:50px; margin-top:10px}

.home-about-content.active {
    opacity: 1;
    position: static;
    pointer-events: all;
}

#home-services {
    padding: 75px 0 40px;
    background: url(../images/home-services.jpg) no-repeat center / cover;
    color: #fff;
}

#home-services .row {
    width: 100%;
}

#home-services h2 {
    font-size: 28px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 0;
    text-transform: uppercase;
}

#home-services h2 strong {
    font-weight: 700;
}

#home-services h3 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
    word-spacing: -2px;
}

#home-services p,
#home-services ul,
#ifa-products span {
    font-size: 17px;
    font-weight: 400;
    text-align: justify;
}

#home-services p,
#home-services ul {
    padding-bottom: 30px;
}

#ifa-products {
    border-color: #53b7a0;
    border-style: solid;
    border-width: 7px 0;
    margin-bottom: 30px;
}

#ifa-products>div {
    padding: 15px 0;
}

#ifa-products>div:not(:last-child) {
    border-bottom: 2px solid #fff;
}

#ifa-products span:not(:last-child) {
    margin-right: 60px;
}

#home-services ul {
    color: #52b69d;
}

#home-services li {
    margin-bottom: 5px;
}

#home-services-container {
    position: relative;
}

#home-services-list {
    transition: opacity .3s;
}

#home-services-list.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

#home-services-list li {
    margin-top: 40px;
}

#home-services-list a {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size:16px; color:#fff;
    height: 100%;
}

#home-services-list li img {
    margin: 0 auto 30px;
    max-width: 90px;
}

#home-services-detail {
    overflow: hidden;
    position: relative;
    transition: opacity .3s;
}

#home-services-detail.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.home-services-content {
    width: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .5s;
    pointer-events: none;
    z-index: -1;
}

.home-services-content.active {
    opacity: 1;
    position: static;
    pointer-events: all;
}

.home-services-content h4 {
    font-size: 35px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--c-green)
}

.home-services-content p {
    line-height: 1.5;
}

.home-services-back,
.home-services-btn {
    display: inline-block;
    width: 200px;
    height: 45px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 45px;
    color: #fff;
    margin: 0 auto;
    background: #46a579;
    background: -moz-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: -webkit-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: linear-gradient(to bottom, #46a579 0%, #63ced2 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#46a579', endColorstr='#63ced2', GradientType=0);
    text-align: center;
}

.home-services-btn {
    width: 150px;
}

#ifa-menu {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--c-green);
    margin-bottom: 30px;
}

#ifa-menu li {
    display: inline-block;
    margin-right: 15px;
}

#ifa-menu li.active,
#ifa-menu li:hover {
    font-weight: 900;
}

#ifa-detail {
    height: 0;
    overflow: hidden;
    position: relative;
}

.ifa-content {
    width: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .5s;
    pointer-events: none;
}

.ifa-content.active {
    opacity: 1;
    position: static;
    pointer-events: all;
}

#home-providers {
    padding: 70px 0;
    background: url(../images/pattern-1.jpg) no-repeat center / cover;
}

#home-providers>.inner-wrapper {
    align-items: flex-start;
}

#home-providers h3 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    text-align: right;
    margin-bottom: 10px;
    text-transform: uppercase;
    align-self: flex-end;
}

#home-providers h4 {
    color: var(--c-grey-2);
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    text-align: right;
    margin-bottom: 0;
    text-transform: uppercase;
    align-self: flex-end;
}

#home-providers p {
    color: #424242;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    margin-bottom: 40px;
    text-transform: uppercase;
    align-self: flex-end;
}

#home-providers p strong {
    color: #4aab87;
    font-weight: 700;
}

#home-providers ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


#home-providers  li{ width:200px; display:inline-block; height:150px; list-style:none; position:relative;}
#home-providers img {
    max-width: 90%; max-height:100%; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%);
}

#home-products {
    padding: 75px 0 40px;
    background: url(../images/home-products.jpg) no-repeat center / cover;
    color: #fff;
}

#home-products>.inner-wrapper {
    align-items: flex-start;
}

#home-products h4 {
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 0;
    text-transform: uppercase;
}

#home-products h4 strong {
    font-weight: 500;
}

#home-products h3 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
    word-spacing: -2px;
}

#home-products p {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 30px;
}

#home-products p:first-of-type {
    text-transform: uppercase;
}

#home-products a {
    width: 200px;
    height: 45px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 45px;
    color: #fff;
    margin: 0 auto;
    background: #46a579;
    background: -moz-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: -webkit-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: linear-gradient(to bottom, #46a579 0%, #63ced2 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#46a579', endColorstr='#63ced2', GradientType=0);
    text-align: center;
}

#home-lab {
    padding: 70px 0;
    background: url(../images/pattern-1.jpg) no-repeat center / cover;
}

#home-lab>.inner-wrapper {
    align-items: flex-start;
}

#home-lab h3 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    text-align: right;
    margin-bottom: 10px;
    text-transform: uppercase;
    align-self: flex-end;
}

#home-lab h4 {
    color: var(--c-grey-2);
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    text-align: right;
    margin-bottom: 0;
    text-transform: uppercase;
    align-self: flex-end;
}

#home-lab p {
    color: #424242;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    align-self: flex-end;
}

#home-lab p strong {
    color: #4aab87;
    font-weight: 700;
}

#home-lab .home-lab-col {
    margin-bottom: 30px;
}

#home-lab .home-gal-item {
    position: relative;
    display: block;
    overflow: hidden;
}

#home-lab img {
    max-width: 100%;
    transition: transform 1s;
}

#home-lab .home-gal-item:hover img {
    transform: scale(1.1);
}

#home-lab .home-gal-item span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity .3s;
}

#home-lab .home-gal-item span:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #46a579;
    background: -moz-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: -webkit-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: linear-gradient(to bottom, #46a579 0%, #63ced2 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#46a579', endColorstr='#63ced2', GradientType=0);
    opacity: .8;
    z-index: -1;
}

#home-lab .home-gal-item:hover span {
    opacity: 1;
}

#home-lab-more {
    width: 200px;
    height: 45px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 45px;
    color: #fff;
    margin: 0 auto;
    background: #46a579;
    background: -moz-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: -webkit-linear-gradient(top, #46a579 0%, #63ced2 99%);
    background: linear-gradient(to bottom, #46a579 0%, #63ced2 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#46a579', endColorstr='#63ced2', GradientType=0);
    text-align: center;
}

/*LAB
--------------------------------------*/
#lab-main {
    width: 100%;
    height: 100vh;
    background: url(../images/home-main.jpg) no-repeat center / cover;
    padding-top: 265px;
    overflow-y: hidden;
}

#lab-main-content {
    color: #fff;
    pointer-events: none;
}

#lab-main-content>.inner-wrapper {
    align-items: flex-start;
}

#lab-main-content h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 45px;
    text-transform: uppercase;
}

#lab-main-content h1 {
    font-size: 78px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1;
    text-transform: uppercase;
}

#lab-main-content h1 i {
    font-weight: 300;
    font-style: normal;
    display: block;
}

#lab-main-content h1 strong {
    /*color: var(--c-green-2);*/
    font-weight: 800;
    display: block;
}

#lab-main-content p {
    font-size: 17px;
    font-weight: 500;
    max-width: 550px;
}

#lab-about {
    padding: 80px 0;
}

#lab-about>.inner-wrapper {
    align-items: flex-start;
    justify-content: space-between;
}

#lab-about .row {
    width: 100%;
}

#lab-about h3 {
    color: var(--c-grey-2);
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
}

#lab-about h2 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#lab-about h4 {
    color: #424242 font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#lab-about h4 strong {
    color: #4aab87;
    font-weight: 600;
}

#lab-about p {
    color: var(--c-grey);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: justify;
}

#lab-video {
    height: 425px;
    background: url(../images/video.jpg) no-repeat center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#lab-video a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#lab-video img {
    margin-bottom: 10px;
}

#lab-video h3 {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
}

#lab-services {
    padding: 70px 0;
    background: url(../images/pattern-1.jpg) no-repeat center / cover;
}

#lab-services>.inner-wrapper {
    align-items: flex-start;
}

#lab-services h2 {
    font-size: 60px;
    line-height: 1;
    font-weight: 800;
    text-align: right;
    margin-bottom: 10px;
    text-transform: uppercase;
    align-self: flex-end;
}

#lab-services h3 {
    color: var(--c-grey-2);
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    text-align: right;
    margin-bottom: 0;
    text-transform: uppercase;
    align-self: flex-end;
}

#lab-services p {
    color: #424242;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    margin-bottom: 70px;
    text-transform: uppercase;
    align-self: flex-end;
}

#lab-services p strong {
    color: #4aab87;
    font-weight: 700;
}

#lab-services ul {
    color: var(--c-grey-2);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#lab-services li {
    width: 14.2%;
    text-align: center;
    font-size: 19px;
    text-transform: uppercase;
}

#lab-services li img {
    display: block;
    margin: 0 auto 15px;
    transition: transform .3s;
}

#lab-services a:hover {
    color: var(--c-green)
}

#lab-services a:hover img {
    transform: scale(1.05);
}

#lab-services-detail {
    background: #f6f6f6;
    height: 0;
    overflow: hidden;
    position: relative;
}

.lab-services-content {
    width: 100%;
    opacity: 0;
    cursor: none;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .5s;
    pointer-events: none;
}

.lab-services-content.active {
    opacity: 1;
    position: static;
    pointer-events: all;
}

.lab-services-detail-info {
    padding: 40px;
    min-height: 440px;
}

#lab-services-detail h3 {
    color: var(--c-green-2);
    font-size: 49px;
    font-weight: 700;
}

#lab-services-detail p {
    color: var(--c-grey);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

#lab-services-detail ul {
    color: var(--c-grey);
}

#lab-services-detail ul:not(:last-child) {
    margin-bottom: 30px;
}

#lab-services-detail li {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.lab-service-detail-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.lab-gal {
    padding: 80px 0;
    background: #fff;
}

.lab-gal .inner-wrapper {
    align-items: flex-start;
}

.lab-gal h4 {
    color: var(--c-grey-2);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.lab-gal h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lab-gal .lab-col {
    margin-bottom: 30px;
}

.lab-gal .lab-gal-item {
    display: block;
    overflow: hidden;
}

.lab-gal img {
    max-width: 100%;
    transition: transform .3s;
}

.lab-gal .lab-gal-item:hover img {
    transform: scale(1.1);
}

#contact {
    color: #fff;
    padding: 40px 0 0;
    background: url(../images/contact.png) no-repeat center / cover;
}

.contact-col {
    margin-bottom: 50px;
}

#contact-info {
    width: 60%;
    padding: 0 15px;
}

#contact h5 {
    font-size: 32px;
    font-weight: 700;
    width: 100%;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#contact h6 {
    color: var(--c-green);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 30px;
}

#contact h6 strong {
    font-size: 15px;
    font-weight: 700;
    display: block;
    color: #fff;
}

#contact span,
#contact a {
    font-size: 15px;
    font-weight: 500;
}

#contact span {
    display: flex;
    margin-bottom: 5px;
}

#contact span .svg-inline--fa {
    color: var(--c-green);
    margin-right: 5px;
    margin-top: 1px;
}

#contact-social a {
    width: 45px;
    height: 45px;
    background: #fff;
    margin-right: 5px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    color: #0f1314;
    display: inline-block;
    font-size: 22px;
}

#contact .parsley-errors-list {
    display: none;
    width: 120px;
    font-size: 11px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    background: #ff5252;
    text-align: center;
    padding: 0 5px;
}

.newlists { width:100%; margin-bottom:40px}
.newlists li{ width:23%; margin:1%; text-align:left;}
.newlists li .img{ height:260px; overflow:hidden;}
.newlists li .img img{ width:100%; height:100%; object-fit:cover;}
.one-line {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.two-line {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.newlists li  span{ font-size:18px; color:#333; margin-top:10px}
.cover{ overflow:hidden;}
.cover img{ width:100%; height:100%; object-fit:cover;}
.newlists li:hover span{ color:#46a579}


.scale{ overflow:hidden;}
.scale img{transition:all 2s; -webkit-transition:all 2s;-moz-transition:all 2s;-ms-transition:all 2s;-o-transition:all 2s;}
.scale:hover img{ transform:scale(1.05,1.05); -webkit-transform:scale(1.05,1.05);-moz-transform:scale(1.05,1.05);-ms-transform:scale(1.05,1.05);-o-transform:scale(1.05,1.05);}


#contact .parsley-errors-list.filled {
    display: block;
}

#contact #contact-loader {}

#contact #contact-loader #loader {
    width: 50px;
    height: 50px;
    background: url(../fonts/loader.svg) no-repeat center;
}

#contact #contact-msg-text {    
    opacity: 0;
    margin-bottom: 30px;
}

#contact #contact-msg-text h2 {
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    color: currentColor;
    line-height: 1.5;
}

#contact #contact-msg-text p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

#contact-form {
    width: 40%;
    padding: 0 15px;
    position: relative;
}

#contact-form form {
    position: relative;
}

#contact-form .contact-field {
    margin-bottom: 15px;
    position: relative;
}

#contact-form input:not([type="submit"]),
#contact-form textarea {
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    border: solid 1px #fff;
    background: unset;
    width: 100%;
    color: #fff;
}

#contact-form input:not([type="submit"]) {
    font-size: 16px;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
}

#contact-form textarea {
    height: 130px;
    padding: 10px;
}

#contact-form input[type="submit"] {
    width: 125px;
    height: 45px;
    border: unset;
    background: var(--c-green);
    margin: 0 0 0 auto;
    display: block;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

#map {
    width: 100%;
}

/*MQ
--------------------------------------*/
@media screen and (max-width: 991px) {
    #header {
        height: 75px;
        top: 0;
    }

    #logo,
    #header.headroom--not-top #logo {
        width: 120px;
    }

    #nav {
        display: none;
    }

    .slicknav_menu {
        display: block;
    }

    #lab-main {
        text-align: center;
        padding-top: 105px;
    }

    #lab-main-content>.inner-wrapper {
        align-items: center;
    }

    #lab-main-content h1 {
        font-size: 50px;
    }

    #lab-about {
        text-align: center;
    }

    #lab-about .row {
        width: unset;
    }

    #lab-about h2 {
        font-size: 45px;
    }

    #lab-video h3 {
        text-align: center;
    }

    #lab-services h2,
    #lab-services h3,
    #lab-services p {
        align-self: center;
        text-align: center;
    }

    #lab-services h2 {
        font-size: 45px;
    }

    #lab-services ul {
        justify-content: center;
    }

    #lab-services li {
        width: 35%;
        margin: 20px 10px;
    }

    .lab-services-detail-info {
        text-align: center;
    }

    #lab-services-detail h3 {
        font-size: 45px;
    }

    #lab-services-detail p,
    #lab-services-detail ul {
        font-size: 25px;
    }

    .lab-gal h4,
    .lab-gal h3 {
        text-align: center;
        display: block;
        width: 100%;
    }

    #contact-info,
    #contact-form {
        width: 100%;
        text-align: center;
    }

    #contact span {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #contact span .svg-inline--fa {
        margin: 0 auto 5px;
    }

    #contact span span {
        margin-bottom: 10px;
    }

    #home-main {
        text-align: center;
        padding-top: 105px;
    }

    #home-main-content>.inner-wrapper {
        align-items: center;
    }

    #home-main-content h1 {
        font-size: 50px;
    }

    #home-about-gal {
        margin-bottom: 80px;
    }

    #home-about {
        text-align: center;
    }

    #home-about .row {
        width: unset;
    }

    #home-about h2 {
        font-size: 45px;
    }

    #home-services h4,
    #home-services h3,
    #home-services h2,
    #home-services p {
        align-self: center;
        text-align: center;
    }

    #home-services h3 {
        font-size: 45px;
    }

    #home-services ul {
        justify-content: center;
    }

    #home-services li {
        width: 35%;
        margin: 20px 10px;
    }

    #home-services .row {
        width: unset;
    }

    #home-providers {
        text-align: center;
    }

    #home-providers>.inner-wrapper {
        align-items: center;
    }

    #home-providers h4,
    #home-providers h3,
    #home-providers p {
        align-self: center;
        text-align: center;
    }

    #home-providers h3 {
        font-size: 45px;
    }

    #home-providers ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    #home-providers li {
        width: 100%;
        margin: 50px 15px;
        text-align: center;
    }

    #home-providers .row {
        width: unset;
    }

    #home-products {
        text-align: center;
    }

    #home-products>.inner-wrapper {
        align-items: center;
    }

    #home-products h2,
    #home-products h3,
    #home-products p {
        align-self: center;
        text-align: center;
    }

    #home-products h3 {
        font-size: 45px;
    }

    #home-products .row {
        width: unset;
    }

    #home-lab {
        text-align: center;
    }

    #home-lab>.inner-wrapper {
        align-items: center;
    }

    #home-lab h2,
    #home-lab h3,
    #home-lab p {
        align-self: center;
        text-align: center;
    }

    #home-lab h3 {
        font-size: 45px;
    }

    #home-lab .row {}
	
	


@media screen and (max-width:768px){
	 #home-main-content h1{ font-size:30px;}
	 #home-main-content h1 strong{ font-size:32px;}
	 #home-about p{ text-align:left; font-size:14px;}
	 #home-about h2{ font-size:30px;}
	 #home-about{ padding:40px 0}
	 .xinzengul01 li{ width:100%;}
	 .xinzengul01 li b{ text-align:left; line-height:1.3; font-size:18px; padding-top:10px; padding-bottom:10px;}
	 #home-services h2,#home-providers h4,#home-products h4,#home-lab h4{ font-size:20px;}
	 #home-services h3,#home-providers h3,#home-products h3,#home-lab h3{ font-size:30px;}
	 #home-services li span{ font-size:14px;}
	 #home-providers li{ width:100px; margin:10px; height:100px;}
	 .newlists li{ width:100%; margin:0; margin-bottom:15px;}
	 .newlists li span{ font-size:14px;}
	 .newlists li .img{ height:160px;}
	 #contact h5{ font-size:20px;}
	 
	 .ban_sub{ height:240px; padding-top:0;}
	 #home-lab{ padding:50px 0;}
	 .xinzengbox{ padding-top:0;}
	 #home-lab h4{ text-align:center; display:block;}
	 #lang{ top:30px; right:60px;}
	 .slicknav_menu{ width:50px; position:static;}
	 .slicknav_btn{ position:absolute; right:0px; top:16px;}
	}
	
 