@font-face {
	font-family: "Swis721 Cn BT";
	src: url("Swiss-Cn-BT.ttf") format('truetype');
	font-style: normal;
}
@font-face {
    font-family: 'Swis721 Cn LT';
    src: url('Swiss 721 Condensed.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: "Swis721 Cn BT";
    src: url("Swiss 721 Condensed.ttf") format('truetype');
    font-style: normal;
	font-weight: 400;
}
@font-face {
    font-family: "Swis721 Bold BT";
    src: url("Swiss 721 Bold BT.ttf") format('truetype');
    font-style: normal;
}
@font-face {
    font-family: "Swiss721BT-Roman";
    src: url("Swiss721BT-Roman.ttf") format('truetype');
    font-style: normal;
}
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	
	font-family: "Swiss721BT-Roman", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    --prime: #49685B;
    --sec: #D7F9FA;
    --light-bg: #D7F9FA;
    scroll-behavior: smooth;
}
html {
    position: relative;
	scroll-padding-top: 100px; 
	scroll-behavior: smooth; 
}
body{
	color: #444444;
	font-size: 16px;
	overflow-x: hidden;
	--screen-width: calc(100vw - (100vw - 100%));
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    border: none;
    background: none;
}
.text-prime {
    color: var(--prime);
}
.btn-prime {
    background: var(--prime);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #fff;
    min-height: 42px;
    padding: 7px 16px;
    border: none;
    border-radius: 6px;
}
.btn-sec {
    border: 1px solid var(--prime);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: var(--prime);
    min-height: 42px;
    padding: 7px 16px;
    border-radius: 6px;
}
.w-fit {
    width: fit-content;
}
.mw-750 {
    max-width: 750px;
}
.fs-7 {
    font-size: 14px;
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar {
	background-color: #FFFFFF;
}
.navbar-nav .nav-link {
    color: #fff;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    font-weight: 600;
    color: #0066B2;
}
#navbar-toggler:checked~.collapse {
    display: block;
}
p,
.fw-light {
    font-family: "Swiss721BT-Roman", sans-serif;
}

p.fw-bold,
.fw-bold {
    font-family: "Swis721 Bold BT", sans-serif;
}
ul{
	padding: 0;
	margin: 0;
}
/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
select,
input,
textarea {
    border: 1px solid transparent;
    outline: none;
    border-radius: 5px;
    padding: 10px 20px;
    background: #fff;
    width: 100%;
}
select {
    padding: 11px 20px;
}
select:focus,
input:focus,
textarea:focus {
    border: 1px solid var(--prime);
    background: #fff;
}
/* onload animation with animation timeline */
/* Animations - Effective if user has no preferance for reduced motion */
@media (prefers-reduced-motion: no-preference) {
    .animate-this {
        opacity: 0;
        transform: translateY(50px);
    }
  
    .animate-this.animated {
        animation: fade-in 0.8s ease-in-out forwards;
    }
  
    .animate-this.rtl {
        opacity: 0;
        transform: translateX(50px);
    }
  
    .animate-this.animated.rtl {
        animation: fade-in-right 0.8s ease-in-out forwards;
    }
  
      .animate-this.lft {
          opacity: 0;
          transform: translateX(-20px);
      }
    
      .animate-this.animated.lft {
          animation: fade-in-left 0.8s ease-in-out forwards;
      }
    @keyframes fade-in {
        to {
            opacity: 1;
            transform: translateY(0px);
        }
    }
  
    @keyframes fade-in-right {
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    @keyframes fade-in-left {
          to {
              opacity: 1;
              transform: translateX(0px);
          }
      }
  }
  @keyframes tp-animate {
    0% {
        transform: translate(0, 0);
    }
  
    50% {
        transform: translate(10px, -10px);
    }
  
    100% {
        transform: translate(0, 0);
    }
  }
.header-top{	background-color: #0066B2;	padding: 12px 0px;     font-family: "Swis721 Bold BT", sans-serif;
    transition: 0.3s all ease-in-out;}
.header-top h6{	font-size: 16px;	color: #fff;	margin-bottom: 0;
font-weight: 700;}
header.sticky .header-top{
	opacity: 0;
	padding: 0;
	height:0;
	    transition: 0.3s all ease-in-out;
}
.navbar-brand {	    padding: 4px 0;	width: 128px;}
ul.navbar-nav li a.nav-link{	color: #444444;}
.main-menu ul li {    position: relative;    padding: 12px 0; display: flex;}
.main-menu ul li a{
	position: relative;
}
.main-menu ul li a:after{ 
	content: ''; 
	position: absolute; 
	left: 0; 
	bottom: -8px; 
	right:0; 
	width: 0; 
	height: 4px; 
	background-color: #0066B2; 
	-webkit-transition: all ease 250ms; 
	margin: 0 auto; 
	border-radius: 2px;
}
.main-menu ul li a.active:after{ width: 24px; }
.main-menu ul li a:hover:after { width: 24px; }
.main-menu ul li ul.submenu {    
	width: 250px;    
	position: absolute;    
	top: 100%;    
	left: -49px;    
	display: block; 
	opacity: 0;    
	visibility: hidden;    
	transform: translateY(10px);    
	transition: all 0.3s ease-in-out;  
	padding: 15px 20px;    
	background: #ffffff;   
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);    
	border-radius: 4px;    
	z-index: 99;
}
.main-menu ul li ul.submenu li a{
	padding: 0 !important;
}
.main-menu ul li ul.submenu li:hover a:after , .main-menu ul li ul.submenu li a.active:after {
    left: 0;
    right: auto;
}
.main-menu ul li ul.submenu li:first-child:hover a:after, .main-menu ul li ul.submenu li:first-child a.active:after{
display: none;
}
.main-menu ul li:hover ul.submenu {    
	opacity: 1;    
	visibility: visible;    
	transform: translateY(0px); 
}
.main-menu ul li ul li{    
	display: block;    
	padding: 6px 0;
}
.main-menu ul li ul.submenu li:first-child a.nav-link.active {
    color: #444444;
font-weight: 400;
}
.click_menu {
	width: 10px;
    height: 10px;
    position: relative;
    display: inline-block;
    right: 1px;
    top: 15px;
    cursor: pointer;
}
.click_menu:before {
    content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    right: 0;
    cursor: pointer;
    top: 0;
    border-style: solid;
    transform: rotate(45deg);
    border-width: 0 0.12rem 0.12rem 0;
    padding: 2px;
    background-position: right;
    z-index: 999;
    border-color: #444444;
}
.footer { 
	background: linear-gradient(to right, #005BAA, #EC1C24);
	background: url('../../images/footer-image.png') no-repeat;
	padding: 60px 0 0;
	background-size: 100% 100%;
}
.footer-top {
	padding-bottom: 20px; 
	
}
.footer-logo {
	width: 280px;
	margin-bottom: 30px;
}
.footer_social li{
	display: inline-block;
	margin-right: 24px;
}
.footer_social li a{
	color: #FFFFFF;
	text-decoration: underline;
	font-family: "Swiss721BT-Roman", sans-serif;
}
.footer_social li a img{
	width: 24px; 
	margin-right: 8px;
}
.footer-link {
	max-width: 310px;
	margin-left: auto;
}
.footer span{
	font-family: "Swiss721BT-Roman", sans-serif;
}
.footer h6{
	color: #FFFFFF;
	font-weight: 700;
	margin-bottom: 14px;
	font-family: 'Swis721 Bold BT', sans-serif;
}
.footer-link ul{
	column-count: 3;
}
.footer-link ul li{
	display: block;
	margin-bottom: 12px;
}
.footer-link ul li a{
	color: #FFFFFF;
	font-family: "Swiss721BT-Roman", sans-serif;
}
.footer_reach p span {
	color: #FFFFFF;
	display: inline-block;
	margin-left: 5px;
}
.footer_reach p a {
	color: #FFFFFF;
	display: inline-block;
	margin-left: 5px;
	font-family: "Swiss721BT-Roman", sans-serif;
}
.footer_reach p span:last-child{
	margin-top: 8px;
}
.footer-btm{
	padding: 24px 0px;
	color: #FFFFFF;
	border-top: 1px solid #FFFFFF;
}
.footer-btm p{
	margin-bottom: 0;
}
.comon-padd {
	padding: 60px 0px;
}
.title h3, h3{
	font-size: 48px;
	font-weight: 400;
	font-family: "Swis721 Cn BT", sans-serif;
}
.title h3 strong{
	font-family: "Swis721 Cn BT", sans-serif;
	color: #0066B2;
}
strong {
	font-family: "Swis721 Cn BT", sans-serif;
}
.title {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 44px;
}
.title p {
	max-width: 751px;
	margin-bottom: 0;
	padding-left: 20px;
}
.global_sec {
	background: linear-gradient(rgba(0, 101, 179, 0.05), #FFFFFF);
	padding-bottom: 20px !important;
}
.industry-card{
	transition: transform 0.3s ease;
	margin-top: 10px;
	border-radius: 16px;
}
.industry-card:hover {
    transform: translateY(-5px);
}
.industry-card-image{
    position: relative;
    width: 100%;
    padding-bottom: 120%;	
	    overflow: hidden;
		    border-radius: 16px;
	-webkit-transition: -webkit-transform .5s ease-out;
    transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out;
    transition: transform .5s ease-out, -webkit-transform .5s ease-out;
}
.industry-card-image img {
	border-radius: 16px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.industry-card:hover .industry-card-image img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform .5s ease-out;
    transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out;
    transition: transform .5s ease-out, -webkit-transform .5s ease-out;
}
.industry-card-text{
	background: #FFFFFF;
	padding: 24px 70px 24px 24px;
	margin-right: 30px;
	position: absolute;
    bottom: 0;
    border-bottom: 1px solid #EC1C24;
    border-radius: 0 0 0 16px;
    left: 0;
}
.industry-card-text span{
	margin-bottom: 10px;
	display: inline-block;
}
.industry-card-text span img{
	width: 46px;
}
.industry-card-text p{
	font-size: 14px;
	margin-bottom: 0;
	/*display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;*/
}
.industry-card-text h6{
	margin-bottom: 8px;
	font-family: "Swis721 Bold BT", sans-serif;
}
h6{
	font-size: 20px;
	font-weight: Bold;
	color: #000000;
	font-family: "Swis721 Bold BT", sans-serif; 
}

.product-solution.product-aditives .title h3{
	width: 44%;
}
.product-solution.product-aditives .title_para{
	width: 56%;
}
.product-solution.product-aditives .title_para p {
	width: 100%;
	max-width: 100%;
}
.product-solution.product-aditives .title_para p {
	margin-bottom: 5px;
}
.product-solution.product-aditives .title_para p strong{
	font-family: "Swiss721BT-Roman", sans-serif;
}
a.arrow-btn{
	position: absolute;
	right: 20px;
    bottom: 20px;
}
a.arrow-btn img {
    transition: transform 0.3s ease;
}
.industry-card:hover a.arrow-btn img {
    transform: translateX(6px); 
}
.industry-col {
	margin-top: 44px;
}
.coreproduct_sec{
    overflow-x: hidden;
	background: url('../../images/product-bg.webp') no-repeat;
	background-size: 100% 100%;
}
.coreproduct_slider {
    width: 100%;
    padding-left: calc((var(--screen-width) - 1300px) / 2);
}
.coreproduct_slider button.owl-prev {
    background: url('../../images/arrow-left1.svg') no-repeat !important;
    left: auto;
    right: 140px;
    top: -120px;
    position: absolute;
    transform: inherit;
    width: 48px;
    height: 48px;
    font-size: 0 !important;
}
.coreproduct_slider button.owl-next {
    background: url('../../images/arrow-right1.svg') no-repeat !important;
	left: auto;
    right: 75px;
    top: -120px;
    position: absolute;
    transform: inherit;
    width: 48px;
    height: 48px;
	font-size: 0 !important;
}
.coreproduct_card{
	background-color: #FFFFFF;
    padding: 15px 14px 20px;
    border-radius: 16px;
    box-shadow: 0px 0px 10px -4px rgba(5, 29, 46, 0.6);
	height: 100%;
	position: relative;
	transition: transform 0.3s ease;
	margin-top: 10px;
}
.coreproduct_card:hover {
    transform: translateY(-5px);
}
.coreproduct_card > a{
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 9;
}
.coreproduct-card-image{
    position: relative;
    width: 100%;
    padding-bottom: 80%;	
	margin-bottom: 27px;
}
.coreproduct-card-image img {
	border-radius: 8px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.coreproduct-card-text{
	padding: 0px 12px 0;
}
.coreproduct-card-text h6, .coreproduct-card-text p{
	margin-bottom: 0;
}
.coreproduct_sec .title h3 {
	width: 100%;
}
.coreproduct_sec .title h3, .coreproduct_sec .title h3 strong,  .coreproduct_sec .title p {
	color: #FFFFFF;
	padding-left: 0;
}
.homeabout_sec{
	background: url('../../images/about-bg.png') no-repeat;
	background-size: 100% 100%;
}
.homeabout_row{
	align-items: flex-end;
}
.homeabout_title {
	max-width: 540px;
	margin-bottom: 34px;
}
.homeabout_title span { 
	color: #EC1C24;
	padding-left: 44px;
	display: block;
	position: relative;
	margin-bottom: 14px;
}
.homeabout_title span:before { 
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 30px;
	height: 1px;
	background: #EC1C24;
}
.homeabout_title h3 {
	font-family: "Swis721 Cn BT", sans-serif;
	font-weight: 700;
	color: #000000;
}
.homeabout_title h3 strong {
	color: #0066B2;
}
.homeabout_box {
	display: flex;
	gap: 14px;
	margin-bottom: 50px;
	transition: transform 0.3s ease;
}
.homeabout_box:hover {
    transform: translateY(-5px);
}
.homeabout_image {
	width: 74px;
	height: 74px;
	background: #FFFFFF;
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
	display: flex;
	justify-content: center;
	border-radius: 100px;
}
.homeabout_image img{
	width: 38px;
}
.homeabout_txt {
	width: calc(100% - 74px);
}
.homeabout_txt p {
	margin-bottom: 0;
}
.homeabout_txt p strong{
	display: block;
	color: #000000;
	font-family: "Swis721 Bold BT", sans-serif;
}
a.video_btn{
	width: 70px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
	z-index: 9;
}
a.video_btn img{
	width: 100%;
	height: auto;
}

.watch_videotxt {
	position: absolute;
	bottom: 24px;
	width: 100%;	
}
.watch_videotxt h3 {
	font-size: 48px;
	color: #FFFFFF;
}
.banner-slider{
	position: relative;
}
.banner-slider button.owl-prev {
    background: url('../../images/arrow-leftback.svg') no-repeat !important;
    left: 20px;
    top: 50%;
    position: absolute;
    transform: inherit;
    width: 48px;
    height: 48px;
    font-size: 0 !important;
}
.banner-slider button.owl-next {
    background: url('../../images/arrow-rightback.svg') no-repeat !important;
	right: 20px;
    top: 50%;
    position: absolute;
    transform: inherit;
    width: 48px;
    height: 48px;
	font-size: 0 !important;
}
.banner-image {
	position: relative;
}
.banner-image img{
	width: 100%;
	height: calc(100vh - 131px);
	object-fit: cover;
	object-position: top;
}
.banner-text {
	position: absolute;
	left: 0;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.banner-text h1{
	font-size: 64px;
	color: #FFFFFF;
	margin-bottom: 12px;
	    font-family: "Swis721 Cn BT", sans-serif;
}
.banner-text p{
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
}
.banner-text ul{
	display: flex;
	margin-bottom: 60px;
}
.banner-text ul li{
	color: #FFFFFF;
	font-family: "Swis721 Bold BT", sans-serif;
	padding-right: 13px;
	margin-right: 13px;
	position: relative;
	display: inline-block;
}
.banner-text ul li:before{
	content: '';
	position: absolute;
	right: -3px;
    top: 10px;
	width: 6px;
	height: 6px;
	background: #666666;
	border-radius: 50px;
}
.banner-text ul li:last-child {
	padding-right: 0px;
	margin-right: 0px;
}
.banner-text ul li:last-child:before {
	display: none;
}
.banner-maintext{
	max-width: 560px;
}
a.btn-white{
	background-color: #FFFFFF;
	border-radius: 4px;
	padding: 16px 20px;
	color: #000000;
	font-family: "Swis721 Bold BT", sans-serif;
	max-width: 270px;
    display: block;
    text-align: center;
}
.banner_btm{
	background-image: linear-gradient(#0066B2, #1672B6);
}
.banner_btm ul li{
	padding: 16px 16px;
	border-right: 1px solid #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-weight: 700;
	color: #FFFFFF;
	font-family: "Swis721 Bold BT", sans-serif;
	width: 33.3%;
}
.banner_btm ul li:last-child{
	border-right: 0;
}
.banner_btm ul li img{
	width: 24px; 
}
.homecontact_sec {
	padding: 49px 0 116px;
	background: url('../../images/contact-bg.png') no-repeat !important;
	background-size: 100% 100%;
}
.homecontact_sec .title h3{
	width: 100%;
}
.homecontact_sec .title p{
	padding-left: 0;
	width: 100%;
}
.homecontact-image{
	max-width: 500px;
	position: absolute;
	right: 0;
	bottom: 16px;
}
.homecontact_box {
	max-width: 921px;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
	padding: 20px;
	border-radius: 12px;
	gap: 16px;
}
.emailbox{
	align-items: center;
	gap: 25px;
	background: #F5F9FC;
	border-radius: 6px;
	padding: 18px 24px;
	width: 50%;
}
.emailbox_image {
	width: 60px;
	height: 60px;
	background: #0066B2;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.emailbox_image img{
	width: 35px;
}
.emailbox_txt h6{
	font-weight: 400;
	margin-bottom: 6px;
	    font-family: "Swiss721BT-Roman", sans-serif;
}
.emailbox_txt a{
	color: #000000;
	    font-family: "Swiss721BT-Roman", sans-serif;
}
.counter_sec{
	background: url('../../images/counterbg.webp') no-repeat !important;
	background-size: cover !important;
	position: relative;
	top: -1px;
}
.counter_sec:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #EC1C24 , #0066B2);
	mix-blend-mode: multiply;
}
.counterwrap {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    row-gap: 4rem;
	position: relative;
}
.numcont{
	margin-bottom: 14px;
	font-size: 64px;
	color: #FFFFFF;
	font-family: "Swis721 Bold BT", sans-serif;
}
.numcont span{
	font-family: "Swis721 Bold BT", sans-serif;
}
.counter_box p{
	color: #FFFFFF;
}
.about_image{
	width: calc(100% - 610px);
}
.about_txt {
	max-width: 610px;
	margin-left: auto;
	padding: 60px 0px 40px;
	padding-left: 30px;
}
.about_txt h3 strong {
	color: #0066B2;
}
.about_main {
	align-items: flex-end;
}
.about_txt p {
	margin-bottom: 12px;
}
.about_txt p strong {
	font-family: "Swiss721BT-Roman", sans-serif;
}
.about_txt p:last-child{
	margin-bottom: 0;
}
.advantage_sec {
	background-image: linear-gradient(to right, rgba(237, 29, 35, 0.08) , rgba(0, 101, 179, 0.08));
}
.advantage_title {
	padding: 60px 0px;
	max-width: 565px;
}
.advantage_title h3 {
	margin-bottom: 30px;
}
.advantage_title h3 strong {
	color: #0066B2;
}
a.outline-btn {
	border: 1px solid #000000;
	padding: 16px 16px;
	border-radius: 4px;
	max-width: 200px;
	display: block;
	text-align: center;
	color: #000000;
}
.advantage_main{
	justify-content: space-between;
	align-items: center;
}
.advantage_img {
	margin-top: -60px;
    max-width: 450px;
}
.vision_sec{
	background: url('../../images/vision-missio-bg.png') no-repeat !important;
	background-size: cover !important;
}
.vision_box{
	transition: transform 0.3s ease;
}
.vision_box:hover {
    transform: translateY(-5px);
}
.vision_img {
	background: #D9D9D9;
	width: 110px;
	height: 110px;
	border-radius: 100px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vision_img img{
	width: 72px;
}
.vision_txt h3{
	margin-bottom: 8px;
	color: #FFFFFF;
}
.vision_txt p{
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0;
}
.ourstory_txt h3{
	color: #000000;
	margin-bottom: 8px;
}
.ourstory_txt h3 strong {
	color: #0066B2;
}
.ourstory_txt p:last-child{
	margin-bottom: 0;
}
.ourstory_txt h5{
	font-family: "Swis721 Cn BT", sans-serif;
}
.ourstory_txt p strong {
	display: block;
	font-size: 18px;
	margin-bottom: 5px;
	font-family: "Swis721 Bold BT", sans-serif;
}
.ourstory_img img {
	width: 100%;
	border-radius: 16px;
}
.ourstory_row {
	margin-bottom: 50px; 
}
.ourstory_row .ourstory_img {
	padding-left: 20px;
}
.ourstory_row1 .ourstory_img {
	padding-right: 20px;
}
.timeline_sec {
	background-image: linear-gradient(#FFFFFF, rgba(0, 101, 179, 0.05));
}
.timeline_sec .title {
	max-width: 860px;
	margin: 0 auto;
	margin-bottom: 70px;
}
.owl-item__inner { 
	display: flex;
	align-items: center;
    flex-direction: column;
    justify-content: center;
	gap: 60px;
	text-align: center;
	max-width: 163px;
	margin: 0 auto;
	position: relative;
}
.owl-item__inner:before {
	content: '';
    position: absolute;
    width: 27px;
    height: 27px;
    background: #0066B2;
    outline: 7px solid rgba(0, 101, 179, 0.1);
    border-radius: 100px;
    top: 73px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.owl-item__inner:after {
	content: '';
    position: absolute;
    width: 165px;
    height: 2px;
    background: url('../../images/line.svg') no-repeat !important;
    top: 85px;
    right: -120px;
}
.owl-item__inner .date-wrap {
	color: #0066B2;
	font-size: 40px;
	font-family: "Swis721 Bold BT", sans-serif;
}
.owl-item__inner .text-wrap {
	color: #000000;
	    max-width: 150px;
}
.timeline-carousel .owl-item:nth-child(even) .owl-item__inner {
	flex-direction: column-reverse;
}
.diffrent_sec {
	margin-bottom: 110px;
	overflow: hidden;
}
.timeline-item {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.timeline-item .icon-wrap {
	width: 64px;
	height: 64px;
	background: #FFFFFF;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 9;
}
.timeline-item .icon-wrap img{
	width: 34px;
}
.timeline-item .content {
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(14px);
	padding: 24px 24px;
	position: relative;
}
.timeline-item .content:before{
	content: "";
    position: absolute;
    z-index: 1000;
    bottom: -16px;
    left: 33px;
    margin-left: -8px;
    border-top: 16px solid rgba(255, 255, 255, 0.15);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 0;
}
.timeline-item .content h6 {
	margin-bottom: 8px;
	font-family: "Swis721 Bold BT", sans-serif;
	color: #FFFFFF;
}
.timeline-item .content p {
	color: #FFFFFF;
	margin-bottom: 0;
	min-height: 72px;
}

.newtimeline-carousel {
    width: 100%;
    padding-left: calc((var(--screen-width) - 1300px) / 2);
	position: relative;
	margin-top: 50px;
}
.newtimeline-carousel .owl-stage-outer {
  overflow: visible;
}
.newtimeline-carousel .owl-stage {
	height: auto;
}
.newtimeline-carousel .owl-item:after {
    content: '';
    position: absolute;
    width: 220px;
    height: 2px;
    background: url(../../images/white-line.svg) no-repeat !important;
    bottom: 30px;
    right: 6px;
}
.newtimeline-carousel .owl-item:nth-child(even):after {
    bottom: 215px;
}
.newtimeline-carousel .owl-item:nth-child(even) .timeline-item .content:before{
	content: "";
    position: absolute;
    z-index: 1000;
    bottom: auto;
	top: -16px;
    left: 33px;
    margin-left: -8px;
    border-bottom: 16px solid rgba(255, 255, 255, 0.15);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 0;
}
.newtimeline-carousel .owl-item > div {
	width: calc(100% + 70% * 1);
}
.newtimeline-carousel .owl-item:nth-child(odd) > div {
	top: 0;
	flex-direction: column-reverse;
}
.newtimeline-carousel .owl-item:nth-child(even) > div {
	margin-top: 185px;
}
.testglobal_sec .title {
	justify-content: center;
}
.testglobal_sec .title h5{
	font-size: 28px;
}
.testglobal_sec .title h2{
	font-size: 58px;
	margin-bottom: 8px;
	font-family: "Swis721 Cn BT", sans-serif;
}
.testglobal_sec .title h2 strong{
	color: #0066B2;
}
.globalcard{
	padding: 30px 30px;
	background: #FFFFFF;
	border-radius: 16px;
	display: flex; 
	align-items: center;
	gap: 100px;
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
}
.globalcard_txt{
	width: 57%;
}
.globalcard_txt h3 strong{
	color: #0066B2;
}
.globalcard_image{
	width: 43%;
	position: relative;
}
.globalcard_image img{
	border-radius: 8px;
}
.globalcard_image:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(0, 101, 179, 0.6), rgba(237, 29, 35, 0.6));
	border-radius: 8px;
	mix-blend-mode: color;
}
.testperform_sec {
	background: rgba(0, 101, 179, 0.05);	
}
.testperform_sec .title{
	justify-content: center;
}
.testperform_sec .title p{
	max-width: 945px;
}
.performcard{
	background: #FFFFFF;
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
	border-radius: 16px;
	padding: 26px 26px;
	height: 100%;
	transition: transform 0.3s ease;
}
.performcard:hover{
	transform: translateY(-5px);
}
.performcard_image{
	width: 84px;
	height: 84px;
	background: rgba(0, 101, 179, 0.1);
	border-radius: 20px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.performcard_image img{
	width: 44px;
}
.performcard_txt h5{
	color: #0066B2;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
	font-family: "Swis721 Bold BT", sans-serif;
}

.performcard_txt p{
	margin-bottom: 0;
}
.performcard_txt ul{
	padding-left: 20px;
    padding-top: 5px;
}
.performcard_txt ul li{
	margin-bottom: 0;
}
.testquality_main {
	padding: 30px 30px;
	background: #FFFFFF;
	border-radius: 16px;
	gap: 64px;
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
}
.testquality_txt{
	width: 57%;
}
.testquality_txt h3 strong{
	color: #0066B2;
}
.testquality_img{
	width: 43%;
	position: relative;
}
.testquality_img:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(0, 101, 179, 0.6), rgba(237, 29, 35, 0.6));
	border-radius: 8px;
	mix-blend-mode: color;
}
.testquality_img img{
	border-radius: 8px;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.testquality_txt h6{
	font-size: 16px;
}
.testquality_txt ul li{
	display: block;
	position: relative;
	padding-left: 40px;
	margin-bottom: 14px;
}
.testquality_txt ul li:before {
	content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../../images/arrow_forward.svg') no-repeat !important;
    top: 0px;
    left: 0px;
}
.testquality_txt p strong{
	font-family: "Swis721 Bold BT", sans-serif;
	display: block;
}
.testquality_txt p a {
	color: #0066B2;
	display: inline-block;
	font-weight: 700;
	font-family: "Swis721 Bold BT", sans-serif;
}
.supplychain_sec .ourstory_txt h3 {
	font-size: 45px;
	margin-bottom: 24px;
}
.supplychain_sec .ourstory_txt ul li{
	display: block;
	position: relative;
	padding-left: 40px;
	margin-bottom: 14px;
}
.supplychain_sec .ourstory_txt ul li:before {
	content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../../images/arrow_forward.svg') no-repeat !important;
    top: 0px;
    left: 0px;
}
.supplychain_sec .ourstory_txt ul li strong{
	display: block;
	font-family: "Swis721 Bold BT", sans-serif;
}
.explore_sec {
	padding: 30px 0px 100px; 
}
.explorecard{
	padding: 30px 30px;
	background: #FFFFFF;
	border-radius: 16px;
	display: flex; 
	align-items: center;
	gap: 84px;
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.1);
	margin-bottom: 40px;
	transition: transform 0.3s ease;
}
.explorecard:hover{
	transform: translateY(-5px);
}
.explorecard:nth-child(even){
	flex-direction: row-reverse;
}
.explore_image{
	max-width: 488px;
	position: relative;
}
.explore_image:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(0, 101, 179, 0.7), rgba(237, 29, 35, 0.7));
	border-radius: 8px;
	mix-blend-mode: color;
}
.explore_image img{
	border-radius: 8px;
	width: 100%;
}
.explore_txt{
	width: calc(100% - 488px);
}
.explore_txt h3 strong{
	color: #0066B2;
}
.explore_txt span{
	background: #E6F0F7;
	border-radius: 8px;
	display: flex;
	align-items: center;
    justify-content: center;
	width: 100px;
	height: 100px;
	margin-bottom: 24px;
}
.explore_txt span img{
	width: 70px;
}
.explore_txt h5 {
	color: #0066B2;
	margin-bottom: 14px;
	font-family: "Swis721 Bold BT", sans-serif;
}
.explore_txt  ul li{
	display: block;
	position: relative;
	padding-left: 40px;
	margin-bottom: 14px;
}
.explore_txt  ul li:last-child{
	margin-bottom: 0;
}
.explore_txt  ul li:before {
	content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../../images/arrow_forward.svg') no-repeat !important;
    top: 0px;
    left: 0px;
}
.supplyadv_sec .advantage_title{
	padding: 40px 0px;
}
.supplyadv_sec .advantage_title h3{
	margin-bottom: 8px;
}
.supplyadv_sec .advantage_title h6{
	margin-bottom: 14px;
	font-family: "Swis721 Bold BT", sans-serif;
}
.supplyadv_sec .advantage_img {
    margin-top: -20px;
	max-width: 50%;
}
.partner_main{
	margin-bottom: 44px;
	flex-wrap: wrap;
	gap: 30px;
	    justify-content: center;
}
.partner_logo{
	/*background: #FFFFFF;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
	padding: 10px;
    flex-wrap: wrap;
	width: 25.8%;
	height: 214px;*/
	transition: transform 0.3s ease;
}
.partner_logo img{
	height: 105px;
}
.partner_logo:hover{
	transform: translateY(-5px);
}
.intrest_box{
	padding: 33px 63px;
	background-image: linear-gradient(to right,rgba(237, 29, 35, 0.08), rgba(0, 101, 179, 0.08));
	border-radius: 8px;
}
.intrest_box h5{
	font-size: 24px;
	margin-bottom: 0;
    line-height: 34px;
}
.intrest_box h5 a{
	color: #0066B2;
	font-family: "Swis721 Bold BT", sans-serif;
	display: block;
}
.career_intrest_box h5 a{
	text-decoration: underline;
}
.partner_sec .about_main {
	margin-bottom: 80px;
	    align-items: flex-start;
}
.partner_sec .about_txt{
	padding: 0;
	padding-right: 80px;
}
.partner_sec .about_image img {
	border-radius: 16px;
}
.team_box{
	text-align: center;
	transition: transform 0.3s ease;
	position: relative;
}
.team_image {
    position: relative;
    width: 100%;
    padding-bottom: 67%;
	background: #D9D9D9;
	overflow: hidden;
}
.team_image img {
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     -webkit-transition: -webkit-transform .5s ease-out;
    transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out;
    transition: transform .5s ease-out, -webkit-transform .5s ease-out;
}
.team_box:hover .team_image img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform .5s ease-out;
    transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out;
    transition: transform .5s ease-out, -webkit-transform .5s ease-out;
}
.team_txt {
	padding: 16px 16px;
	text-align: left;
	background: #FFFFFF;
    padding: 24px 70px 24px 24px;
    position: relative;
    bottom: 0px;
    left: 0;
	width: 100%;
}
.team_txt:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #EC1C24;
	    -webkit-transition: all ease 800ms;
}
.team_box:hover .team_txt:before {
	width: 100%;
}
.team_box:hover a.arrow-btn img {
    transform: translateX(6px); 
}
.team_txt h6 {
	font-family: "Swis721 Bold BT", sans-serif;
	margin-bottom: 7px;
}
.team_txt p {
	margin-bottom: 0;
}
.team_txt a{
	margin-top: 16px;
	display: flex;
	justify-content: left;
    gap: 5px;
	color: #0066B2;
	text-decoration: underline;
}
.team_sec .team_txt {
    padding: 24px 70px 24px 0;
}
.leader_sec .row{
	margin-bottom: 44px;
}
.leader_sec .container{
	max-width: 948px;
}
.lead-col{
	margin-bottom: 44px;
}
.lead-col:nth-child(even) .team_box{
	margin-left: auto;
}
.founder_sec {
    background: linear-gradient(rgba(0, 101, 179, 0.05), #FFFFFF);
}
.founder_sec .container{
	max-width: 1048px;
}
.founder_sec .row:nth-child(even){
	flex-direction: row-reverse;
}
.founder_sec .ourstory_row .ourstory_txt{
	padding-right: 30px;
}
.founder_sec .ourstory_row1 .ourstory_txt{
	padding-left: 30px;
}
.lead-col h3 {
	text-align: center;
	max-width: 412px;
	margin-bottom: 30px;
}
.lead-col:nth-child(even) h3 {
	margin-left: auto;
}
.lead-col h3 strong {
	color: #0066B2;
	font-family: "Swis721 Cn BT", sans-serif;
}
.team-office{
	max-width: 1016px;
    margin: 0 auto;
	margin-top: 40px;
}
.join_sec .title {
	max-width: 665px;
	margin: 0 auto;
	margin-bottom: 44px;
}
.join_sec .title p{
	max-width: 100%;
	padding-left: 0;
}
.joinus_list ul.joinus_tabs {
	display: flex;
	justify-content: space-between;
	border-bottom: 7px solid #D9D9D9;
	margin-bottom: 60px;
}
.joinus_list ul.joinus_tabs li {
	width: 23%;
    text-align: center;
    display: block;
	font-size: 18px;
}
.joinus_list ul.joinus_tabs li a{
	color: rgba(0, 0, 0, 0.6);
	padding: 15px 0px;
    display: block;
	position: relative;
	font-family: "Swis721 Cn BT", sans-serif;
}
.joinus_list ul.joinus_tabs li a:before{
	content:'';
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 7px;
	background: #0066B2;
	opacity: 0;
}
.joinus_list ul.joinus_tabs li.active a:before{
	opacity: 1;
}
.joinus_list ul.joinus_tabs li.active a{
	color: #000000;
}
.joinus_card {
	background: #FFFFFF;
    box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
	padding: 20px 20px;
	border-radius: 16px;
	margin-bottom: 30px;
	transition: transform 0.3s ease;
}
.joinus_card:hover{
	transform: translateY(-5px);
}
.joinus_cardimg{
	width: 84px;
    height: 84px;
    background: rgba(0, 101, 179, 0.1);
    border-radius: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.joinus_cardimg img {
    width: 44px;
}
.joinus_cardtxt h6{
	font-family: "Swis721 Bold BT", sans-serif;
	font-size: 20px;
	margin-bottom: 4px;
}
.joinus_cardtxt p{
	margin-bottom: 10px;
}
.joinus_cardtxt ul{
	margin-bottom: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.joinus_cardtxt ul li{
	border: 1px solid rgba(0, 0, 0, 0.3);
	padding: 4px 9px;
	border-radius: 8px;
	display: inline-block;
	font-size: 15px;
}
.joinus_button a{
	color: #000000;
	font-family: "Swis721 Bold BT", sans-serif;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.joinus_button a img{
	width: 48px;
}
.carrer_sec .title h3{
	width: 100%;
	margin-bottom: 14px;
}
.carrer_sec .title ul{
	display: flex;
	justify-content: center;
}
.carrer_sec .title ul li{
	padding: 10px 24px;
	background: #0066B2;
	border-radius: 4px;
	color: #FFFFFF;
	display: inline-block;
	margin-right: 24px;
}
.carrer_sec .title ul li:last-child{
	margin-right: 0;
}
.career_form .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.inputfile + label { 
	max-width: 100%; 
	font-size: 14px; 
	font-weight: 400; 
	text-overflow: ellipsis; 
	white-space: nowrap; 
	cursor: pointer;
	display: flex; 
	align-items: center; 
	justify-content: center; 
}
.inputfile + label img {
	width: 24px; 
	margin-right: 8px; 
}
.inputfile-1 + label { 
	color: #fff; 
	background-color: transparent; 
	border: 2px dashed rgba(225, 225, 225, 0.5);
	border-spacing: 15px;
    padding: 24px 12px;
    border-radius: 8px;
    text-align: center;
}
.g-recaptcha { 
	margin-bottom: 12px; 
}
.job_details {
	border-top: 1px solid rgba(135, 135, 135, 0.6);
	padding-top: 69px;
}
.job_details_txt p strong , .job_details_txt ul li strong, .job_details_txt strong{
	font-family: "Swis721 Bold BT", sans-serif;
}
.job_details_txt h3{
	color: #000000;
	font-family: "Swis721 Cn BT", sans-serif;
	margin-bottom: 20px;
	font-weight: 700;
}
.job_details_txt h6{
	font-size: 20px;
	font-family: "Swis721 Bold BT", sans-serif;
	margin-bottom: 14px;
}
.job_details_txt ul{
	padding-left: 15px;
	margin-bottom: 20px;
}
.job_details_txt ul li{
	margin-bottom: 10px;
}
.career_form{
	background: #FFFFFF;
    box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
	padding: 40px 40px;
	border-radius: 16px;
}
.career_form h6{
	font-size: 20px;
	font-family: "Swis721 Bold BT", sans-serif;
	margin-bottom: 8px;
	text-align: center;
}
.career_form p{
	margin-bottom: 30px;
	text-align: center;
}
.career_form label{
	margin-bottom: 10px;
	display: block;
	color: #2E2E2E;
	font-weight: Bold;
}
.career_form label span{
	color: #FF3838;
	margin-right: 4px;
	display: inline-block;
	vertical-align: middle;
}
.career_form input {
	border: 1px solid #2E2E2E;
	border-radius: 5px;
	padding: 10px 15px;
	width: 100%;
}
.career_form input::placeholder {
	color: rgba(46, 46, 46, 0.6);
}
.career_form select {
	border: 1px solid #2E2E2E;
	border-radius: 5px;
	padding: 10px 15px;
	width: 100%;
	    font-size: 16px;
	color: rgba(46, 46, 46, 0.6);
}
.iti--allow-dropdown {
	display: block;
	width: 100%;
}
.career_form .box span {
	color: #2E2E2E;
	font-weight: 400;
}
.career_form .box span a{
	color: #0066B2;
	font-weight: 700;
}
.checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.check-group input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.check-group label {
	position: relative;
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, 0.4);
	border-radius: 8px;
	padding: 5px 10px;
	display: inline-block;
    font-weight: 400;
	margin-bottom: 0;
}
.check-group input:checked + label {
	padding-left: 28px;
}
.check-group input:checked + label:after {
	content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 11px;
    width: 6px;
    height: 11px;
    border: solid #2E2E2E;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.career_form input[type=submit] {
	background: #0066B2;
	color: #FFFFFF;
	border-radius: 4px;
	border: 0;
}
.event_sec {
    background: linear-gradient(rgba(0, 101, 179, 0.05), #FFFFFF);
}
.upcoming_events{
	margin-bottom: 80px;
}
.event_card{
	background: #FFFFFF;
	box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
	padding: 20px 20px;
	border-radius: 16px;
	transition: transform 0.3s ease;
    height: 100%;
}
.event_card:hover{
	transform: translateY(-5px);
}
.event_img{
	background: #0066B2;
	padding: 40px 20px;
	text-align: center;
	border-radius: 16px;
	margin-bottom: 30px;
}
.event_img h3{
	color: #FFFFFF;
	font-size: 34px;
	margin: 0;
}
.event_img h3 strong{
	display: block;
}
.event_txt {
	text-align: center;
}
.event_txt h6 {
	font-size: 20px;
	font-family: "Swis721 Cn BT", sans-serif;
	font-weight: 700;
}
.event_txt a{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	font-family: "Swis721 Cn BT", sans-serif;
	color: #0066B2;
	font-weight: 700;
}
.event_txt a img{
	width: 25px;
}
.visiting_events .event_img{
	background: #EC1C24;
}
.visiting_events .title h3 strong{
	color: #EC1C24;
}
.visiting_events .event_txt a{
	color: #EC1C24;
}
.contact_sec {
	position: relative;
	padding: 40px 0 0;
}
.contact_main {
	overflow: hidden;
}
.contact-image {
    width: 38vw;
    right: -137px;
    margin-bottom: 30px;
    position: relative;
	margin-top: 20px;
}
.contact-image img {
	width: 100%;
}

.contact_sec:before {
	content: '';
    position: absolute;
    width: 100%;
    height: 1130px;
    background: url('../../images/contact-bg.webp') no-repeat !important;
    top: 0px;
    left: 0px;
	background-size: cover !important;
}
.contact_sec .container{
	position: relative;
}
.contact_sec .title p{
	padding: 0;
	max-width: 100%;
}
.contact_sec form {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 40px 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	gap: 17px;
}
.contact_sec form div.halfs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact_sec form label{
	color: #000000;
	margin-bottom: 12px;
}
.contact_sec form input{
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 13px 15px;
	width: 100%;
}
.contact_sec form select{
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 13px 15px;
	width: 100%;
	color: rgba(0, 0, 0, 0.5);
}
.contact_sec form textarea{
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 13px 15px;
	width: 100%;
	height: 96px;
	
}
.contact_sec form input[type="submit"]{
	background: #0066B2;
	display: inline-block;
	border-radius: 4px;
	color: #FFFFFF;
	width: 220px;
}
.contact-mailbox {
	background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 18px rgba(2, 48, 71, 0.15);
    padding: 20px;
    border-radius: 12px;
	margin-bottom: 20px;
}
.contact-mailbox .emailbox {
	width: 100%;
	margin-bottom: 10px;
}
.contact-mailbox .emailbox:last-child {
	margin-bottom: 0;
}
.map_sec  {
	margin-top: 20px !important;
}
.map_iframe img{
	width: 100%;
}
.map_main{
	position: relative;
}
.map_location{
	padding: 0px 10px 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.location_box {
	background: #FFFFFF;
	padding: 30px 15px 20px;
	border-radius: 16px;
	box-shadow: 0px 2px 10px rgba(2, 48, 71, 0.1);
	display: flex;
	gap: 20px;
	width: 100%;
	margin: 12px 0;
	transition: transform 0.3s ease;
	border-bottom: 10px solid #FFFFFF;
}
.location_box:hover {
    transform: translateY(-5px);
}
.location_image{
	width: 44px;
	height: 44px;
	background: rgba(0, 101, 179, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.location_image img{
	width: 15px !important;
}
.location_txt {
	width: calc(100% - 64px);
}
.location_txt h6{
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 6px;
	font-family: "Swis721 Bold BT", sans-serif;
}
.location_txt a{
	color: #000000;
	display: block;
}
.resource_main{
	margin-bottom: 80px;
}
.resource_col{
	margin-top: 44px;
}
.resource_box{
	padding: 30px 30px;
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0px 2px 10px rgba(2, 48, 71, 0.15);
	text-align: center;
	height: 100%;
	transition: transform 0.3s ease;
}
.resource_box:hover{
	transform: translateY(-5px);
}
.resource_icon{
	background: #FFFFFF;
	border-radius: 100px;
	box-shadow: 0px 2px 10px rgba(2, 48, 71, 0.15);
	width: 84px;
	height: 84px;
	display: flex; 
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: 24px;
}
.resource_icon img{
	width: 41px;
}
.resource_txt h6{
	color: #2E2E2E;
	margin-bottom: 6px;
}
.resource_txt p{
	padding-bottom: 13px;
	border-bottom: 1px solid #000000;
	margin-bottom: 13px;
}
.resource_txt a{
	display: flex;
	align-items: center;
	gap: 15px;
	color: #0066B2;
	font-weight: 700;
	justify-content: center;
}
.resource_txt a img{
	width: 24px;
}
.whywork_box{
	margin-top: 26px;
	transition: transform 0.3s ease;
}
.whywork_box:hover{
	transform: translateY(-5px);
}
.whywork_box span {
	color: #FFFFFF;
	background: #EC1C24;
	padding: 16px 18px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 38px;
	font-family: "Swis721 Bold BT", sans-serif;
}
.whywork_txt{
	background: #E6F0F7;
	border-radius: 20px;
	padding: 24px 24px;
}
.whywork_txt p{
	color: #0066B2;
	margin-bottom: 0;
}
.value_sec .resource_txt p {
    padding-bottom: 0px;
    border-bottom: 0;
    margin-bottom: 0px;
}
.life_sec.comon-padd {
	padding-bottom: 60px;
} 
.life_sec .title {
    max-width: 515px;
    margin: 0 auto;
	margin-bottom: 44px;
}
.life_sec .title h3{
	width: 100%;
}
.life_sec .title p{
	max-width: 100%;
}
.life_sec .title h3 strong {
	font-family: "Swis721 Bold BT", sans-serif;
	color: #0066B2;
}
.carrer_life .title h3 strong {
	font-family: "Swis721 Cn BT", sans-serif;
}
.customer-name {
	margin: -17px auto 0;
	width: auto;
	padding: 9px 35px;
	text-align: center;
	color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	font-size: 24px;
	bottom: 10px;
	font-family: "Swis721 Bold BT", sans-serif;
	font-weight: 700;
	text-transform: capitalize;
}
#customers-testimonials .owl-item.active.center .item .customer-name{
	font-size: 20px;
}
#customers-testimonials .item {
	text-align: center;
	margin-bottom: 30px;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1.0, 1.0, 1);
	transform: scale3d(1.0, 1.0, 1);
}
#customers-testimonials .owl-carousel .owl-item img {
	transform-style: preserve-3d;
    margin: 0 auto 17px;
	border-radius: 16px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span {
	background: #3190E7;
	opacity: 1;
}
#customers-testimonials.owl-carousel .owl-dots{
	display: inline-block;
	width: 100%;
	text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
	display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
	background: #3190E7;
	display: inline-block;
	height: 10px;
	margin: 0 2px 5px;
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 10px;
	opacity: 0.4;
	border-radius: 50px;
}
.customer-item {
	position: relative;
}
.customer-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    border-radius: 16px;
}
.customer-item img {
	border-radius: 16px;
	height: 450px;
	object-fit: cover;
}
.searchbox { 
	position: relative; 
	margin-bottom: 44px;
}
.searchbox input{ 
	display:inline-block; 
	vertical-align:middle;
}
.searchbox input[type="text"] { 
	margin: 0 auto;
	width: 100%; 
	outline: none; 
	font-size: 18px; 
	line-height: 26px;
	color: #000000; 
	border: 1px solid #000000;  
	border-radius: 0; 
	padding: 10px 15px 10px 60px; 
	background:#ffffff;
	border-radius: 8px;
	font-size: 16px;
}
.searchbox input::placeholder { 
	color: #000000; 
}
#button-submit{ 
	background: url('../../images/search.svg') no-repeat; 
	border-width:0px;
	width: 31px; 
	height: 31px;
	position: absolute; 
	left: 15px;
    top: 7px;
    background-size: 35px;
}
.printsearch_row {
	align-items: center;
}
.printsearch_row img{
	border-radius: 16px;
	width: 100%;
}
.printsearch_row p {
	margin-bottom: 8px;
}
.aplication_productsec {
	background-color: rgba(0, 101, 179, 0.1);
	padding: 60px 0px;
}
.aplication_productsec .title h3{
	width: 100%;
}
.tabs-main {
	display: flex;
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.33);
}
.tabs-container{
	width: 326px;
	background: #0066B2;
	background: url('../../images/tab-bg.webp') no-repeat; 
	background-size: cover;
	padding: 26px 19px;
	border-radius: 16px 0 0 16px;
}
.tabs-container nav ul li {
	background: rgba(255, 255, 255, 0.1);
	padding: 17px 16px;
	border-radius: 8px;
	display: block;
	margin-bottom: 24px;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	font-family: "Swis721 Cn BT", sans-serif;
	font-weight: 700;
}
.tabs-main .tab-content {
    display: none;
}
.tab-content.current {
    display: inherit;
}
.tabs-contents{
	padding: 38px 38px; 
	width: calc(100% - 326px);
}
.tab-list ul { 
	padding-right: 25px; 
	overflow-y: auto; 
	max-height: 805px; 
}
.tab-list ul::-webkit-scrollbar{ 
	width: 4px; 
	border-radius: 40px;
}
.tab-list ul::-webkit-scrollbar-thumb{ 
	background-color: #0066B2;
}
.tab-list ul::-webkit-scrollbar-track {  
	background-color: rgba(0, 101, 179, 0.1); 
}
.tab-list ul li{
    box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.33);
	background: #FFFFFF;
	border-radius: 16px;
	padding: 30px 24px;
	display: block;
	    margin: 8px;
	margin-bottom: 20px;
}
.tab-listbox {
	display: flex;
	align-items: center;
	gap: 20px;
}
.tab-image{
	width: 84px;
	height: 84px;
	box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.33);
	background: #FFFFFF;
	border-radius: 100px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.tab-txt {
	width: calc(100% - 84px);	
}
.tab-txt p{
	margin-bottom: 0;
}
.tab-txt h6{
	font-family: "Swis721 Cn BT", sans-serif;
}
.tabs-container nav ul li.active{
	background: #FFFFFF;
	color: #0066B2;
}
.highperform_sec .row{
	align-items: center;
}
.highperform_sec h2{
	color: #000000;
}
.highperform_sec p strong {
	font-family: "Swis721 Bold BT", sans-serif;
}
.highperform_sec img{
	height: 100%;
    object-fit: cover;
}
.product-pigment{
	background: rgba(0, 101, 179, 0.1);
}
.product-pigment h3 strong{
	color: #0066B2;
}
.product-pigment img {
	width: 100%;
	border-radius: 16px;
}
.product-pigment-txt{
	padding-left: 15px;
}
.product-pigment-txt ul{
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.product-pigment-txt ul li{
	width: 48.8%;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.33);
    border-radius: 16px;
    padding: 28px 17px;
    display: flex;
    align-items: center;
	transition: transform 0.3s ease;
}
.product-pigment-txt ul li:hover{
	transform: translateY(-5px);
}
.product-pigment-txt ul li img{
	width: 44px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}
..product-pigment-txt p strong{
	font-family: "Swiss721BT-Roman", sans-serif;
}
.product-industrial .title h3, .product-solution .title h3, .product-whychose .title h3, .product_formula .title h3,
.product-prepare .title h3, .faq_sec .title h3 {
	width: 100%;
}
.product-industrial .title h3{
	margin-bottom: 30px;
}
.product_formula .title p, .product-prepare .title p , .faq_sec .title p {
	max-width: 100%;
    margin: 0 auto;
}
.product-industrial .product-industrial-row{
	align-items: center;
	margin-bottom: 80px;
}
.product-industrial .product-industrial-row:last-child{
	margin-bottom: 0;
}
.product-industrial .product-industrial-row:nth-child(even){
	flex-direction: row-reverse;
}
.product-industrial .product-industrial-row img{
	border-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-industrial .testquality_txt {
	width: 100%;
}
.product-industrial .testquality_txt h3 {
	margin-bottom: 20px;
}
.product-whychose {
	background: rgba(0, 101, 179, 0.1);
}
.product_quality{
	padding: 80px 0 0;
	background: linear-gradient(rgba(0, 101, 179, 0.05), #FFFFFF);
}
.product_quality .testquality_main {
    gap: 54px;
}
.product_quality .testquality_img {
    width: 45%;
}
.product_quality .testquality_txt {
    width: 55%;
}
.product_formula_row {
	justify-content: center;
}
.product_formula {
	padding: 65px 0px;
	    background: linear-gradient(rgba(0, 101, 179, 0.05), #FFFFFF);
}
.product_formula .location_box {
    align-items: center;
}	
.product_formula .location_image {
    width: 84px;
    height: 84px;
}
.product_formula .location_image img{
    width: 24px !important;
}
.product_industry {
	background: linear-gradient(rgba(0, 101, 179, 0.05), #FFFFFF);
	padding-bottom: 50px;
}
.product_industry .industry-card-text{
	margin-right: 0;
}
.product_industry .owl-dots .owl-dot.active span {
	background: #3190E7;
	opacity: 1;
}
.product_industry .owl-dots{
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-top: 25px;
}
.product_industry .owl-dots .owl-dot{
	display: inline-block;
}
.product_industry .owl-dots .owl-dot span {
	background: #3190E7;
	display: inline-block;
	height: 10px;
	margin: 0 2px 5px;
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 10px;
	opacity: 0.4;
	border-radius: 50px;
}
.product-prepare {
	padding: 40px 0px 70px;
}
.prepare-row {
	max-width: 1050px;
	margin: 0 auto;
}
.preparecard {
	background: #FFFFFF;
    box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.33);
    border-radius: 16px;
    padding: 4px 4px;
    display: flex;
    align-items: center;
	transition: transform 0.3s ease;
}
.preparecard:hover{
	transform: translateY(-5px);
}
.preparecard img{
	border-radius: 16px;
	width: 40%;
	height: 162px;
	object-fit: cover;
}
.preparecard p{
	padding: 0 30px;
	width: 60%;
	margin-bottom: 0;
}

.accordion-body ul li{
	display: block;
	position: relative;
	padding-left: 40px;
	margin-bottom: 14px;
}
.accordion-body ul li:before {
	content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../../images/arrow_forward.svg') no-repeat !important;
    top: 0px;
    left: 0px;
}
.faq_sec .accordion { display: grid; grid-template-columns: 1fr 1fr; align-items: start;  gap: 20px; }
.faq_sec .accordion-item { border: 1px solid #E9EAF0; border-radius: 8px;
align-self: start; background: #E6F0F7; }
.faq_sec .accordion-button { border: 0; border-radius: 8px; padding: 17px 23px; 
    font-weight: 700; font-family: "Swis721 Bold BT", sans-serif; background: #E6F0F7; }
.faq_sec .accordion-button::after { background: url('../../images/down-arrow.svg') no-repeat; background-size: 33px; width: 33px; height: 33px; }
.faq_sec .accordion-button:not(.collapsed)::after { background: url('../../images/down-arrow.svg') no-repeat; background-size: 33px;
 transform: rotate(-180deg); }
.faq_sec .accordion-item:first-of-type .accordion-button { border-top-left-radius: 8px; border-top-right-radius: 8px; }
.faq_sec .accordion-button:not(.collapsed) { color: #000000; font-weight: 700; background-color: #E6F0F7;
 box-shadow: none; }
.faq_sec .accordion-body { padding-top: 0;  padding-right: 70px; }

.tab-content {
    scroll-margin-top: 140px; 
}
#sync2 {
	width: 97%;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
#sync2 .item {
	margin: 12px 8px;
}
#sync2 .owl-item.current .location_box {
	border-bottom: 10px solid #0066B2;
}
#sync2 button.owl-prev {
    background: url('../../images/arrow-left-white.svg') no-repeat !important;
    left: -50px;
    right: 0;
    margin: 0 auto;
    top: auto;
    bottom: -65px;
    position: absolute;
    transform: inherit;
    width: 63px;
    height: 63px;
    font-size: 0 !important;
}
#sync2 button.owl-next {
    background: url('../../images/arrow-right-white.svg') no-repeat !important;
	left: 0;
    right: -50px;
    margin: 0 auto;
    top: auto;
    bottom: -65px;
    position: absolute;
    transform: inherit;
    width: 63px;
    height: 63px;
	font-size: 0 !important;
}
#sync1 .item iframe, #sync1 .item img {
	width: 100%;
	height: 80vh;
	object-fit: cover;
	border-radius: 16px;
}
.map_main {
	border: 10px solid #FFFFFF;
	border-radius: 16px;
}
.product-moreinfo h3 strong{
	color: #0066B2
}
.product-moreinfo h3 {
	margin-bottom: 30px;
}
.product-moreinfo a.btn-prime {
	background: #0066B2;
	color: #FFFFFF;
	padding: 16px 60px;
	border-radius: 4px;
	    margin: 0 auto;
}
.product-testperform_sec ul{
		padding-left: 0;
}
.product-testperform_sec ul li{
	display: block;
	position: relative;
	padding-left: 40px;
	margin-bottom: 14px;
}
.product-testperform_sec ul li:before {
	content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../../images/arrow_forward.svg') no-repeat !important;
    top: 0px;
    left: 0px;
}
.resigns_industrial{
	background: rgba(0, 101, 179, 0.05);
}
.prod_faq{
	background: rgba(0, 101, 179, 0.05);
}
.faq_sec.prod_faq .accordion-button {
    background: #FFFFFF;
}
.product_formula.bg-white{
	background: #FFFFFF;
}
.faq_sec.prod_faq .accordion-item{
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
}
.faq_sec.prod_faq .accordion-body ul {
	padding-left: 0 !important;
}
.majorapp_sec{
padding: 50px 0px;
}
.majorapp_col {
margin-bottom: 30px;
}
.highperform_sec {
padding-bottom: 20px;
}
.hero .container { object-position: top !important; }
/****Responsive*****/
@media (max-height: 550px) {
.banner-image img { height: 100%;  }
}
@media (max-width: 1539px) {
.banner-slider button.owl-prev { left: 12px; }
.banner-slider button.owl-next { right: 12px; }
}
@media (max-width: 1440px) {
.newtimeline-carousel .owl-item:nth-child(even) > div {
    margin-top: 205px;
}	
.newtimeline-carousel .owl-item:nth-child(even):after {
    bottom: 235px;
}

}
@media (max-width: 1439px) {
.title p { max-width: 58%;	}
.title h3, h3 , .watch_videotxt h3 { font-size: 40px; }
.banner-text h1, .testglobal_sec .title h2 { font-size: 54px; }
.homecontact-image { max-width: 400px; }
.homecontact_box { max-width: 865px; }
.owl-item__inner:after { width: 155px;  right: -112px; }
.newtimeline-carousel .owl-item > div { width: calc(100% + 39% * 1); }
.explore_txt span { width: 85px; height: 85px; }
.explore_txt span img { width: 62px; }
.explorecard { gap: 48px; }
.supplychain_sec .ourstory_txt h3 {  font-size: 38px; }
.performcard_txt h5 {    font-size: 21px; }
.performcard_image { width: 76px; height: 76px; }
.performcard_image img { width: 40px; }
.items .location_box { gap: 10px; padding: 30px 13px; }
.timeline-item .content {  padding: 20px 22px; }
.contact-image {
    width: 37vw;
    right: -80px;
}

}
@media (max-width: 1399px) {
.coreproduct_slider, .newtimeline-carousel { padding-left: calc((var(--screen-width) - 1120px) / 2); }	
.about_image{ width: 55%; }
.about_txt { max-width: 45%;  padding: 50px 0px;  padding-left: 20px; }
.owl-item__inner:after { width: 140px; right: -99px; }
.newtimeline-carousel .owl-item > div { width: calc(100% + 65% * 1); }
.timeline-item .content p { min-height: 96px; }
.newtimeline-carousel .owl-item:nth-child(2n) > div {
    margin-top: 198px;
}
.contact-image {
    width: 42vw;
    right: -40px;
}

.newtimeline-carousel .owl-item:nth-child(even):after {
    bottom: 228px;
}
}
@media (max-width: 1279px) {
.gap-lg-3 {  gap: 7px !important; }
.footer-logo {  width: 230px; }
.title p { max-width: 55%;	}
.homecontact-image { max-width: 350px; }
.homecontact_box { max-width: 765px; }
.title h3, h3, .watch_videotxt h3 { font-size: 38px; }
.banner-text h1, .testglobal_sec .title h2 {  font-size: 44px;  }
.banner-text p {  margin-bottom: 20px; }
.banner-text ul { margin-bottom: 40px; }
.owl-item__inner:after { width: 125px; right: -85px; }
.event_card { padding: 20px 18px; }
.joinus_list ul.joinus_tabs li {
    width: 30%;
}
.resource_box {
    padding: 30px 15px;
}
.supplychain_sec .ourstory_txt h3 {
        font-size: 32px;
    }
.explore_image {
    max-width: 420px;
}
.explore_txt {
    width: calc(100% - 420px);
}
.explorecard {
        gap: 35px;
    }
.product-pigment-txt ul {
    gap: 12px;
}
.main-menu ul li {
    font-size: 15px;
}
.click_menu:before {
    top: -2px;
}
.contact-image {
    width: 50vw
}
}
@media (max-width: 1199px) {
.coreproduct_slider, .newtimeline-carousel {  padding-left: calc((var(--screen-width) - 935px) / 2); }
.founder_sec .container , .leader_sec .container{
    max-width: 90%;
}
}
@media (max-width: 1179px) {
.homecontact_box { max-width: 720px;  }
.owl-item__inner:after { width: 120px; right: -70px; }

}
@media (max-width: 1079px) {
.coreproduct_sec .title { padding-right: 30px; }
.title h3, h3, .watch_videotxt h3 { font-size: 32px; }
.banner_btm ul li {  padding: 16px 7px;  font-size: 15px; }
.contact_sec form { padding: 30px 24px; }
.career_form { padding: 30px 20px; }
.joinus_list ul.joinus_tabs li {
        width: 34%; font-size: 17px;
    }
.partner_main {
    gap: 35px;
}
.partner_logo { height: auto;}
.partner_sec .about_txt {
    padding-right: 20px;
}
.partner_sec .about_main {
    align-items: self-start;
    margin-bottom: 50px;
}
.tabs-container {
    width: 280px;
}
.tabs-contents {
    padding: 30px 25px;
    width: calc(100% - 280px);
}
.tab-list ul li {
    padding: 25px 20px;
}
.tab-image {
    width: 70px;
    height: 70px;
}
.tab-listbox {
    gap: 15px;
}
.tab-list ul {
    padding-right: 15px;
}
.advantage_title {
    max-width: 430px;
}
}
@media (max-width: 991.9px) {
.header-top h6 { font-size: 16px; }
.main-menu ul li a:after {  right: auto; }
ul.navbar-nav li a.nav-link {  padding: 0; }
.gap-lg-3 { gap: 0 !important;  }
.main-menu ul li { display: block; }
.click_menu { position: absolute; top: 19px; }
.main-menu ul li ul.submenu { width: 100%;  position: relative; left: 0; top: 5px; opacity: 1; visibility: visible;  display: none;
transform: translateY(0px); }
.main-menu ul li.open2 .submenu { display: block;}
.footer_reach { margin-top: 20px; }
.title p { max-width: 100%; padding-left: 0;  }
.comon-padd { padding: 50px 0px; }
.coreproduct_slider, .newtimeline-carousel { padding-left: calc((var(--screen-width) - 700px) / 2); }
.homeabout_img { max-width: 400px; margin: 0 auto; }
.homecontact-image { max-width: 300px; }
.homecontact_box { max-width: 620px; }
.emailbox { gap: 15px;  padding: 16px 16px; }
.emailbox_image {  width: 50px; height: 50px; }
.emailbox_image img { width: 28px; }
.emailbox_txt h6, .industry-card-text h6,  h6 { font-size: 16px; }
.banner-slider button.owl-next { left: 0; right: -50px;  top: auto; width: 40px; height: 40px;  margin: 0 auto; 
background-size: 40px !important; bottom: 20px; }
.banner-slider button.owl-prev { left: -50px; right: 0px;  top: auto; width: 40px; height: 40px;  margin: 0 auto; 
background-size: 40px !important; bottom: 20px; }
.title { margin-bottom: 30px; }
.homecontact_sec { padding: 40px 0; }
.homecontact-image { position: relative; bottom: 0; margin: 0 auto; }
.homecontact_box { max-width: 100%; margin-bottom: 30px; }
.owl-item__inner .date-wrap {  font-size: 32px; }
.owl-item__inner:before { top: 63px; }
.owl-item__inner:after { top: 76px; }
.watch_video img { height: 350px; object-fit: cover; }
.event_card { margin-bottom: 20px; }
.partner_logo {
    width: 29.8%;
}
.ourstory_txt { margin-bottom: 30px; }
.ourstory_row .ourstory_img {
    padding-left: 0;
}
.ourstory_row1 .ourstory_img {
	padding-right: 0;
}
.ourstory_row1  { flex-direction: column-reverse; }
.explore_sec {
    padding: 0px 0px 30px;
}
.explorecard {
    padding: 25px 25px;
	flex-wrap: wrap;
}
.explore_image {  max-width: 100%;         width: 100%;}
.explore_txt {  max-width: 100%;        width: 100%; }
.explore_txt span {
        width: 72px;
        height: 72px; margin-bottom: 20px;
}
.explore_txt span img {
        width: 42px;
    }
.founder_sec .container, .leader_sec .container {
        max-width: 720px;
    }
.advantage_main {
    flex-direction: column-reverse;
}
.advantage_title , .supplyadv_sec .advantage_title{
    padding: 50px 0px;
    max-width: 100%;
}
.advantage_img {
    margin: 0 auto;
	margin-top: -60px;
}
.supplyadv_sec .advantage_img {
	max-width: 450px;
}
.contact-image {
    margin: 30px auto;
}
}
@media (max-width: 767.9px) {
.header-top h6 { font-size: 14px; }
.navbar-brand { width: 110px; }
.click_menu { right: 2px; }
.main-menu ul li { padding: 10px 0; }
.footer-link {  margin-left: 0; margin-top: 25px; }
.title h3, h3{ font-size: 27px; }
p, body { font-size: 14px; }
.footer { padding: 40px 0 0; }
.coreproduct_slider { padding-left: calc((var(--screen-width) - 520px) / 2); }
.footer { background-size: cover; }
.banner-image img { height: 100%; }
.banner-text ul { flex-wrap: wrap; margin-bottom: 15px; }
.banner-text ul li {  margin-bottom: 5px; }
.banner_btm ul { flex-wrap: wrap; }
.banner_btm ul li { width: 100%; border-right: 0;  border-bottom: 1px solid #FFFFFF; }
.banner_btm ul li:last-child {  border-bottom: 0; }
.coreproduct_sec { padding-bottom: 100px; }
.coreproduct_slider button.owl-next { left: 0; right: -50px;  top: auto; width: 40px; height: 40px;  margin: 0 auto; 
background-size: 40px !important; bottom: -60px; }
.coreproduct_slider button.owl-prev{ left: -50px; right: 0px;  top: auto; width: 40px; height: 40px;  margin: 0 auto; 
background-size: 40px !important; bottom: -60px; }
.homeabout_image { width: 55px; height: 55px; }
.homeabout_image img { width: 32px; }
.homeabout_txt { width: calc(100% - 55px); }
.watch_video img { height: 300px; object-fit: cover; }
a.video_btn { width: 40px; }
.watch_videotxt h3 { font-size: 21px; }
.homecontact_box , .contact-mailbox{  flex-wrap: wrap;     padding: 12px; }
.emailbox { width: 100%;        padding: 14px 12px; }
.homeabout_box {  margin-bottom: 30px; align-items: center; }
a.btn-white { padding: 12px 20px; }
.banner-text p { margin-bottom: 15px; }
.banner-slider button.owl-prev , .banner-slider button.owl-next { bottom: 12px; }
.contact-left { margin-bottom: 20px; }
.upcoming_events , .job_details_txt{  margin-bottom: 30px; }
.event_img h3 { font-size: 26px; }
.event_card { padding: 15px 15px; }
.job_details { padding-top: 30px; }
.job_details_txt h3 { margin-bottom: 15px; }
.career_form input, .career_form select {
    font-size: 15px;
}
.joinus_list ul.joinus_tabs {
    display: flex;
    border-bottom: 0;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.joinus_list ul.joinus_tabs li {
        width: 50%;
}
.customer-item img {
    height: 350px;
}
.resource_col {
    margin-top: 30px;
}
.resource_main {
    margin-bottom: 40px;
}
.intrest_box {
    padding: 30px 35px;
}
.intrest_box h5 {
    font-size: 18px;
    margin: 0;
}.whywork_box span {
    font-size: 24px;
}
.partner_sec .about_main {
    flex-wrap: wrap;
}
.partner_sec .about_txt {
    padding-right: 0;
    width: 100%;
	max-width: 100%;
}
.about_image {
	 width: 100%;
}
.searchbox {
    margin-bottom: 20px;
}
.printsearch_row img { margin-top: 20px; }
.tabs-container {
        width: 100%;
    }
.tabs-main { flex-wrap: wrap; }
.tabs-contents {
        padding: 20px 15px;
        width: 100%;
    }
	.tabs-container nav ul li {
    padding: 12px 16px;
    margin-bottom: 12px;
    font-size: 16px;
	}
.tab-content {
        scroll-margin-top: 120px; 
    }
.explorecard {
    padding: 16px 16px;        
	gap: 25px;
}
.product_formula {
    padding: 30px 0px;
}
.product_quality {
    padding: 50px 0 0;
}
.product-prepare {
    padding: 20px 0px 30px;
}
.product-industrial .product-industrial-row {
    margin-bottom: 30px;
}
.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.mb-5 {
    margin-bottom: 2.5rem !important;
}
.aplication_productsec {
    padding: 40px 0px;
}
.founder_sec .ourstory_row1 .ourstory_txt, .founder_sec .ourstory_row .ourstory_txt {
    padding: 0;
}
.founder_sec .container, .leader_sec .container {
        max-width: 540px;
    }
.team_box {
    margin: 0 auto;
}
.newtimeline-carousel {
        padding-left: calc((var(--screen-width) - 520px) / 2);
    }
.newtimeline-carousel .owl-item:nth-child(even) > div {
    margin-top: 0;
	flex-direction: column;
}
.newtimeline-carousel .owl-item:nth-child(odd) > div {
    flex-direction: column;
}
.newtimeline-carousel .owl-item:after {
    bottom: auto;
    top: 34px;
    width: 84%;
    background: url(../../images/white-line.svg) repeat-x !important;
}
.banner-text {
    padding: 20px 0 70px;
    position: relative;
    left: 0;
    width: 100%;
    top: 0;
    transform: inherit;
    background-image: linear-gradient(#0066B2, #1672B6);
}
.highperform_sec img {
    height: 100%;
}
.product-pigment-txt ul li {
    padding: 18px 15px;
}
.hero .hero-image {
	object-position: top 0 right -50px;
}
.contact-image {
        width: 70%;        right: 0;        margin-top: 10px;
    }
.map_sec {
        padding-bottom: 80px !important;
    }
.timeline-item .content:before{
    top: -16px;
	bottom: auto;
	border-bottom: 16px solid rgba(255, 255, 255, 0.15);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 0;
}
.majorapp_sec .majorapp_col{
	margin-bottom: 20px;
}
.highperform_sec p span {
	font-size: 14px !important;
}
.faq_sec .accordion-button {
    padding: 10px 18px;
}
.prod_faq { padding-top: 0; }
.product-testperform_sec ul {
    padding-left: 0 !important;
}
.product-testperform_sec .row { gap: 30px; }
.location_box {
    margin: 10px 0;
}
.location_box {
    padding: 20px 15px 10px;
}
.comon-padd {
        padding: 40px 0px;
    }
.highperform_sec {
    padding-bottom: 0;
}
}

@media (max-width: 575.9px) {
.container { padding: 0px 20px; }
.industry-col { margin-top: 24px; }
.coreproduct_sec .title { margin-bottom: 14px; }
.coreproduct_slider, .newtimeline-carousel { padding-left: 20px; }
.coreproduct-card-text { padding: 0px 12px 12px; }
.coreproduct_slider .slick-list { padding-right: 40px !important; }
a.arrow-btn img { width: 35px; }
.industry-card-text { background: #FFFFFF;  padding: 24px 50px 24px 15px; }
a.arrow-btn { right: 14px; }
.map_iframe img { height: 300px; object-fit: cover; }
.carrer_sec .title ul li {
    padding: 10px 12px;  margin-right: 12px;
}
.partner_main {
        gap: 25px;
        justify-content: center;
    }
	.partner_logo {
        width: 28.8%;
    }
	.tab-listbox {
        flex-wrap: wrap;
    }
	.tab-txt {
    width: 100%;
}
.founder_sec .container, .leader_sec .container {
        max-width: 100%;
    }
}
@media (max-width: 479px) {
.footer-logo { width: 150px; }
.footer-link ul { column-count: 2; }
.banner-text h1 , .testglobal_sec .title h2 { font-size: 30px;  }
.contact_sec form div.halfs { grid-template-columns: 1fr; }
.career_form .box span a {
 display: block;
}
.joinus_list ul.joinus_tabs li {
        width: 100%;
}
.joinus_list ul.joinus_tabs li a:before {
    bottom: -1px;
    height: 5px;
}
.partner_logo {
        width: 44.8%;
    }
.timeline-item .content {
        max-width: 88vw !important;
    }
	.header-top h6 {
        font-size: 13px;
    }
.event_txt a img {
    width: 16px;
}
.timeline-item .icon-wrap {
    width: 56px;
	height: 56px;
}
}