@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Red+Hat+Display:wght@400;500;600;700;800;900&display=swap');
body{
  box-sizing:border-box; 
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  padding:0px;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#342980;
  --secondary-color:#D4973E;
  --black-color:#000000;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p{
  font-size: 16px;
  color: #222;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a, button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
section{
  padding:70px 0 70px;
}
.fontHeading{
  font-family: 'Red Hat Display', sans-serif;
}
.inlineHeader{
  display: flex;
  padding:0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading{
  font-size:45px;
  line-height: 55px;
}
.heading{
  font-size: 36px;
  line-height: 45px;
}
.sub_heading{
  font-size: 30px;
}
.small_heading{
  font-size: 24px;
}
.title{
  font-size: 20px;
}
.text{
  font-size: 18px;
}
.fontWeight300{
  font-weight: 300;
}
.fontWeight400{
  font-weight: 400;
}
.fontWeight500{
  font-weight: 500;
}
.fontWeight600{
  font-weight: 600;
}
.fontWeight700{
  font-weight: 700;
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900;
}
.text_primary{
  color: var(--primary-color);
}
.text_secondary{
  color: var(--secondary-color);
}
.text_black{
  color: var(--black-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.bgBlack{
  background: var(--black-color);
}
.leftLogo{
  width: 322px;
}
.leftLogo img{
  max-width: 100%;
}
.topMenu, .topMenu ul, .mainMenu ul{
  display: flex;
  align-items: center;
}
.topMenu{
  justify-content: flex-end;
}
.topMenu ul li a{
  padding:5px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.topMenu ul li a i{
  padding-right: 8px;
}
.topMenu ul:last-child li a{
  padding:5px 8px;
}
.mainMenu ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mainMenu ul li a{
  padding:20px 15px;
  display: inline-block;
  color: #333;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.mainMenu ul li a:hover, .mainMenu ul li.active > a{
  color: var(--primary-color);
}
.mainMenu ul li{
  position: relative;
}
.mainMenu ul li ul{
  position: absolute;
  top: 65px;
  visibility: hidden;
  opacity: 0px;
  transition: all 0.3s ease-in-out;
  padding: 10px 0;
  display: block;
  opacity: 0;
  left: 0px;
  width: 300px;
  z-index: 9;
  background:#fff;
  border-radius: 5px;
}
.mainMenu ul li ul li a{
  padding:10px 20px;
  text-transform: capitalize;
  color: #333;
  display: block;
  font-size: 14px;
}
.mainMenu ul li ul li a:hover{
  background: #f1f1f1;
  color: #000;
}
.mainMenu ul li:hover ul{
  top: 55px;
  opacity: 1;
  visibility: visible;
}
.bgCallAction{
  background: #d6d0ff;
}
.btnHeader{
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  border:1px solid transparent;
  padding:10px 15px;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.btnHeader:hover{
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.heroSlider img{
  width: 100%;
  height: 95vh;
  object-fit: cover;
}
.heroSlider{
  position: relative;
}
.carousel-caption{
  right: auto;
  left: 3%;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  width: 50%;
  z-index: 2;
}
.carousel-inner:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  z-index: 1;
}
.bannerForm{
  position: absolute;
  top: 45%;
  transform:translateY(-50%);
  right: 3%;
  width: 450px;
  background: rgba(255,255,255,.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  z-index: 3;
}
.formHeader{
  text-align: center;
  position: relative;
  padding:30px 10px;
}
.formHeader h4, .formHeader h5{
  color: #fff;
}
.formBody{
  padding:0px 30px 10px;
}
.bannerFormItem input, .bannerFormItem textarea,  .bannerFormItem select{
  padding: 10px 15px;
  height: 50px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  border:1px solid #ddd;
}
.bannerFormItem input::placeholder, .bannerFormItem textarea::placeholder, .bannerFormItem select::placeholder{
  font-weight: 600;
  font-size: 15px;
}
.bannerFormItem{
  margin-bottom: 10px;
}
.bannerFormItem textarea{
  height: 100px;
}
.btnTheme{
  border:1px solid transparent;
  background: var(--primary-color);
  color: #fff;
  padding:12px 30px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
}
.btnTheme:hover{
  background: #fff;
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0px 3px 0px var(--primary-color);
}
.btnSecondary{
  border:1px solid transparent;
  background: var(--secondary-color);
  color: #fff;
  padding:12px 30px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
}
.btnSecondary:hover{
  background: #fff;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  box-shadow: 0px 3px 0px var(--secondary-color);
}
.formHeader .text{
  font-size: 16px;
}
.bannerRatio{
  border-radius: 20px;
  padding:30px 20px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
  background: #fff;
}
.itemRatio{
  text-align: center;
}
.iconRatio{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background:#d6d4e5;
  padding:15px;
  margin:0 auto;
}
.itemRatio h4{
  margin-top: 15px;
}
.itemRatio img{
  max-width: 100%;
}
.leftProduct img{
  max-width: 100%;
  height: 370px;
  object-fit: cover;
}
.rightProduct{
  background: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  height: 100%;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  width: 100%;
  background:#fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.60s;
  animation-duration: 0.60s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
  100% {margin-top: 0;}
}
@keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
}
.stricky-fixed .leftLogo{
  width: 290px;
}
.stricky-fixed .mainMenu{
  margin-top: 10px;
}
.btnWhite{
  border:1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  padding:12px 30px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
}
.btnWhite:hover{
  background: var(--primary-color);
  border-color: transparent;
  color: #fff;
  box-shadow: 0px 3px 0px #fff;
}
.bgPattern{
  position: relative;
  z-index: 1;
}
.bgPattern:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/bg/banner-pattern.png) no-repeat;
  background-size: cover;
}
.bgGrey{
  background: #f5f5f5;
}
.rightAbout img{
  max-width: 100%;
}
.experience{
  margin-top: 50px;
  margin-left: 60px;
  display: flex;
  align-items: center;
}
.number{
  position: relative;
  z-index: 1;
}
.number h4{
  font-size: 90px;
}
.contentExperience{
  width: 120px;
  margin-left: 30px;
}
.number:after{
  width: 150px;
  height: 150px;
  content: '';
  position: absolute;
  top: -16px;
  left: -37px;
  border:5px solid var(--primary-color);
  z-index: -1;
  opacity: .6;
}
.itemIndustries{
  border-radius: 5px;
  border:2px solid var(--primary-color);
  text-align: center;
  height: 100%;
}
.tagPlastic{
  background: var(--primary-color);
  color: #fff;
  padding:15px;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.iconIndustries img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.callAction {
  background: url(../images/bg/bg-action.webp) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.callAction:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0,0,0,.7);
}
.itemWhy{
  text-align: center;
  padding:20px 0;
  border-radius: 5px;
}
.color1 h4{
  color: var(--primary-color);
}
.iconWhy{
  width: 70px;
  margin: 0 auto;
}
.iconWhy img{
  max-width: 100%;
}
.color2 h4{
  color: #0db715;
}
.color3 h4{
  color: #ea0f33;
}
.color4 h4{
  color: #eaaa0f;
}
.color5 h4{
  color: #fc6e03;
}
.logoSlider {
  height: 100px;
  margin-bottom: 15px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  background: #fff;
  padding: 5px;
}
.logoSlider a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logoSlider img {
  max-width: 100%;
  max-height: 100%;
}
.leftLogoSlider .sub_heading{
  font-size: 28px;
}
.itemSLider{
  padding: 0 5px;
}
.leftContact ul {
    margin-top: 20px;
}
.leftContact ul li, .rightContactInner ul li{
  font-weight: 600;
  color: #000;
  position: relative;
  padding:10px 15px;
  padding-left: 50px;
}
.leftContact ul li{
  padding:14px 15px;
  padding-left: 50px;
}
.leftContact ul li:before, .rightContactInner ul li:before{
  content: '';
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 11px;
  font-size: 22px;
  left: 10px;
  font-weight: 900;
  color: var(--primary-color);
}
.leftContact ul li.iconAddress:before, .rightContactInner ul li.iconAddress:before{
  content: '\f3c5';
}
.leftContact ul li.iconMobile:before, .rightContactInner ul li.iconMobile:before{
  content: '\f879';
}
.leftContact ul li.iconMail:before, .rightContactInner ul li.iconMail:before{
  content: '\f0e0';
}
.leftContact ul li.iconWeb:before{
  content: '\f0ac';
}
.iconMobile a, .iconMail a, .iconWeb a{
  color: #000
}
.rightSocial ul{
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.rightSocial ul li a {
  color:#000;
  font-size: 22px;
  display: inline-block;
  padding: 10px 10px;
}
.rightSocial ul li a:hover{
  color: var(--primary-color);
}
.rightContact{
  padding:20px;
  padding-bottom: 5px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.footer {
  background: #222;
  text-align: center;
  padding: 10px 0;
}
.leftFooter p{
  color: #999;
  font-size: 15px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 30px;
  text-align: center;
  height: 30px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}
.listBullet{
  margin-top: 20px;
}
.listBullet li{
  padding: 5px 0;
  position: relative;
  padding-left: 30px;
  z-index: 1;
}
.listBullet li:before{
  content: '';
  position: absolute;
  left: 3px;
  width: 10px;
  height: 10px;
  top: 12px;
  border-radius: 50%;
  background: var(--secondary-color);
}
.leftService img{
  max-width: 100%;
}
.leftService{
  padding: 15px;
  padding-right:0;
  position: relative;
  z-index: 1;
}
.leftService:before{
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 150px;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
}
.rightService{
  padding-left: 40px;
}
.rightService p{
  margin-top: 15px;
}
.centerTechnical p{
  color: #111;
  text-align: center;
  margin-top: 15px;
}
.centerTechnical{
  border:1px solid #999;
  position: relative;
  z-index: 1;
  padding:40px;
}
.centerTechnical:after{
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  border:1px solid #999;
  z-index: -1;
}
.aboutLeft .listBullet li{
  font-weight: 700;
  font-size: 18px;
  color: var(--secondary-color);
}
.assurance li p{
  font-weight: 500;
  font-size: 15px;
  margin-top: 10px;
}
.table{
  border-color: #666
}
.table th{
  text-align: center;
}
.table th, .table td{
  vertical-align: middle;
  border-color: #666
}
.table td span{
  display: block;
  width: 100%;
  height: 60px;
}
.table td img{
  height: 60px;
}
.borderNone td{
  border-left: none !important;
}
.imgProduct img{
  border-radius: 50px;
  width: 100%;
  height: 177px;
  transition: all 0.3s ease-in-out;
}
.itemProduct:hover img{
  border-radius: 50%;
}
.itemProduct{
  margin-top: 20px;
}
.whatChat {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 50px;
    z-index: 9;
}
.whatChat img {
    max-width: 100%;
}
.capIn{
    width:100%;
    padding:10px;
    border-radius:3px;
    border:1px solid #999;
}
.itemSuggest{
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--secondary-color);
}
#refresh_captcha{
  background: #fff;
}
.btnSecondaryRefresh{
  cursor: pointer;
  border-radius: 5px;
  padding:12px 10px;
  width: 100%;
  font-weight: 900;
  text-align: center;
}
#refresh_captcha2{
  background: var(--secondary-color);
}