@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');
body{
  box-sizing:border-box; 
  font-family: 'Open Sans', sans-serif;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#ff9711;
  --secondary-color:#262626;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p{
    font-size: 16px;
}
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;
}
.header{
  padding:0px 0;
}
.sliderBanner img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.sliderBanner{
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.sliderBanner:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 1;
}
.header{
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9;
  width: 100%;
}
.inlineHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.large_heading{
  font-size: 50px;
}
.heading{
  font-size: 40px;
}
.leftLogo h1{
  color: #fff;
}
.text_primary{
  color: var(--primary-color) !important;
}
.text_secondary{
  color: var(--secondary-color) !important;
}
.fontWeight700{
  font-weight: 700;
}
.carousel-control-next, .carousel-control-prev{
  z-index: 2;
}
.fontWeight500{
  font-weight: 500;
}
.rightMenu ul{
  display: flex;
  align-items: center;
}
.rightMenu ul li a{
  color:#fff;
  font-size: 18px;
  transition: all 0.5s ease-in-out;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding:10px 20px;
}
.rightMenu ul li a:after{
  content: '';
  position: absolute;
  top: -7px;
  transition: all 0.5s ease-in-out;
  left: 0px;
  width: 60px;
  transform: scale(0);
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  z-index: -1;
}
.rightMenu ul li a:hover:after{
  transform: scale(1);
  animation:scale infinite 1s linear;
}
@keyframes scale{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(.9);
  }
  100%{
    transform: scale(1);
  }
}
.carousel-caption{
  right: auto;
  left: 10%;
  z-index: 2;
  top: 0px;
  height: 100%;
  display: flex;
  padding: 15px;
  width: 50%;
  text-align: left;
  justify-content: center;
  flex-direction: column;
}
.title{
  font-size: 20px;
}
.btnLearn{
  background: var(--primary-color);
  color: #fff;
  border:none;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  border:2px solid transparent;
}
.btnLearn:hover{
  background: transparent;
  border-color:var(--primary-color);
  color: #fff;
}
.transition-timer-carousel-progress-bar {
  height: 3px;
  background-color: var(--primary-color);
  width: 0%;
  margin: 0px 0px 0px 0px;
  border: none;
  z-index: 11;
  position: absolute;
  top: 0px;
  left: 0;
}
.aboutHome{
  margin-top: -80px;
  background: url(../images/bg/background-pattern.png);
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
.small_heading{
  font-size: 14px;
}
.aboutLeft h4{
  margin: 15px 0;
}
.aboutLeft p{
  margin-top: 15px;
}
.btnTheme{
  padding: 16px 40px;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border:2px solid transparent;
  position: relative;
  z-index: 1;
}
.btnTheme:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
  transform: scale(0);
}
.btnTheme:hover:before{
  transform: scale(1);
  border-radius: 5px;
}
.btnTheme:hover
{
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.centerImg{
  background: #fff;
  width: 100%;
  padding: 0 0px;
  position: relative;
  z-index: 1;
}
.centerImg img{
  max-width: 100%;
}
.centerImg:after{
  content: '';
  position: absolute;
  top: 10px;
  right: -10px;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
}
.bgProduct{
  background: url(../images/banner/banner.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  z-index: 1;
}
.bgProduct:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 33.4%;
  height: 100%;
  background: url(../images/bg/dark_wall.jpg);
  z-index: -1;
}
.productLeft{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
  height: 100%;
}
.productLeft h4{
  color: #fff;
}
.itemProduct{
  padding: 40px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: rgb(0 0 0 / 30%);
}
.itemProduct h4{
  color: #fff;
}
.itemProduct p{
  color: #fff;
}
.sub_heading{
  font-size: 30px;
}
.itemProduct p{
  margin-top:15px;
}
.bgBlack{
  background: #000000b3;
}
.link{
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin-top: 12px;
}
.link:hover{
  color:#fff;
}
.serviceItem{
  border:1px solid #e0e0e0;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}
.space{
  height: 60px;
}
.iconService{
  width: 100px;
  height: 100px;
  background: #ffeacf;
  border-radius: 50%;
  padding: 20px;
  margin: 0 auto;
  border:2px solid var(--primary-color);
}
.iconService img{
  max-width: 100%;
}
.serviceItem h4{
  margin: 20px 0;
}
.serviceItem .link:hover{
  color: var(--secondary-color);
}
.bgGrey{
  background: #f1f1f1;
}
.itemGallery{
  position: relative;
}
.itemGallery img{
  max-width: 100%;
  height: 500px;
  object-fit: cover;
}
.titleGallery{
  position: absolute;
  bottom:0px;
  left: 0px;
  width: 100%;
  color: #fff;
  padding: 15px;
  z-index: 9;
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.titleGallery h3{
  color: #fff;
}
.fancybox-caption-wrap{
  background: none;
  text-align: center;
  border-top:none;
}
.itemGallery{
  margin-bottom: 20px;
}
.verticalImg img{
  height:240px; 
  width: 100%;
}
.titleGallery h3{
  font-size: 20px;
}
.verticalImg2 img{
  height: 350px;
  width: 100%;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -200px;
  right: 10px;
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 18px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}
.footer{
  background: url(../images/bg/dark_wall.jpg);
  padding: 60px 0 0px;
}
.footerAbout h3{
  color: #fff;
}
.footerAbout p{
  color:#fff;
  margin-top: 15px;
}
.itemFooter ul{
  margin-top: 15px;
}
.itemFooter ul li a{
  font-size: 15px;
  display: inline-block;
  padding:8px 5px;
  font-weight: 500;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.itemFooter ul li a:hover{
  color: var(--primary-color);
  text-decoration: underline;
  padding-left: 8px;
}
.textFooter{
  font-size: 15px;
}
.itemFooter p a:hover{
  color: #fff !important;
}
.socialLink{
  display: flex;
}
.socialLink li a{
  color: #fff;
  font-size:18px !important;
  display: inline-block;
  padding: 5px 10px !important;
}
.socialLink li a:hover{
 padding: 5px 10px !important; 
}
.copyRight{
  margin-top: 70px;
  padding: 5px 0;
  border-top:1px solid #333;
  display: flex;
  align-items: center;
  background: rgb(0 0 0 / 30%);
  justify-content: space-between;
}
.copyRight p{
  color: #999;
  font-size:15px;
  font-weight: 600;
}
.copyRight p a{
  color: #fff;
}
.mobileMenu{
  position: fixed;
  top: 0px;
  left: -100%;
  background:#fff;
  transition: all 0.5s ease-in-out;
  width: 70%;
  height: 100%;
  z-index: 999;
  padding-top: 20px;
}
.mobileMenu ul li a{
  font-size: 17px;
  font-weight: 600;
  padding: 5px 15px;
  color: #000;
  display: inline-block;
}
.mobileMenu.active{
  left: 0px;
}
.sticky{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,244,244,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(244,244,244,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(244,244,244,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4f4f4',GradientType=0 );
  border-bottom: 1px solid #ccc;
  z-index: 99;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.sticky .leftLogo h1{
  color: #000;
}
.sticky .rightMenu ul li a{
  color: #000;
  font-weight: 600;
}
.sticky .btnMenu{
  color: #000;
}
.shortBanner{
  height: 450px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-attachment: fixed;
}
.aboutHeader{
  background: url(../images/bg/about-header.jpg) no-repeat;
}
.bradeCrame{
  background: #f1f1f1;
}
.bradeCrame ul {
  display: flex;
  align-items: center;
}
.bradeCrame ul li a{
  font-size: 15px;
  color: #000;
  display: inline-block;
  position: relative;
  padding: 5px 10px;
}
.bradeCrame ul li a i{
  font-size: 18px;
}
.bradeCrame ul li{
  position: relative;
}
.bradeCrame ul li:before{
  content: '/';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
}
.bradeCrame ul li:last-child:before{
  display: none;
}
.aboutRight img{
  max-width: 100%;
}
.aboutRight{
  position: relative;
  z-index: 1;
}
.aboutRight:after{
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg/aboutBg.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
.bgAbout
{
  background: url(../images/bg/video-background.jpg) no-repeat;
  background-attachment: fixed;
}
.aboutInner{
  border-bottom: 1px solid #999;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.aboutInner:last-child{
  border-bottom: none;
  padding-bottom: none;
  margin-bottom: 0px;
}
.fontWeight300{
  font-weight: 300;
}
.rightMenu ul li a i{
  font-size: 12px;
}
.rightMenu ul li{
  position: relative;
}
.rightMenu ul li ul{
  position: absolute;
  top: 80px;
  left: 0px;
  width: 250px;
  z-index: 9;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  background: #fff;
}
.rightMenu ul li ul li a{
  font-size: 15px;
  display: block;
  color: #000;
}
.rightMenu ul li ul{
  display: block;
}
.rightMenu ul li ul li a:hover:after{
  display: none;
}
.rightMenu ul li ul li a:hover{
  background: #f9f9f9;
  color: var(--primary-color);
}
.rightMenu ul li:hover ul{
  visibility: visible;
  opacity: 1;
  z-index: 9;
  top: 50px;
}
.coreHeader{
  background: url(../images/bg/core-cutting-machines.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.windingHeader{
  background: url(../images/bg/winding-machines-header.webp) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.stackingHeader{
  background: url(../images/bg/stacking-tables-header.webp) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.stackingSystemHeader{
  background: url(../images/bg/stacking-systems-header.webp) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.machineDesignHeader{
  background: url(../images/bg/machine-design-header.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.textGrey{
  color: #666;
}
.aboutLeft ul{
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 10px;
}
.aboutLeft ul li{
  padding: 5px 5px;
}
.downloadItem{
  background: #fff;
  padding:20px 30px;
  border:2px solid #ddd;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
}
.leftPdfIcon{
  width: 50px;
}
.leftPdfIcon img{
  max-width: 100%;
}
.centerContent .title{
  font-size: 17px;
}
.btnDownload{
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
  transition: all 0.5s ease-in-out;
}
.btnDownload:hover{
  background: var(--secondary-color);
  color: #fff;
}
.centerContent span{
  margin-left: 15px;
}
.downloadItem:hover
{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.formBlock{
  margin-top: 40px;
}
.form-floating>.form-control:focus, .form-select:focus, .form-floating>.form-control:not(:placeholder-shown)
{
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.textHeight {
    height: 130px !important;
}
.form-floating>label{
  font-size:15px;
}
.textHeight {
    height: 130px !important;
}
.contactItem{
  display: flex;
  justify-content: space-between;
}
.contactIcons{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border:1px solid var(--primary-color);
  font-size: 20px;
  color: var(--primary-color);
}
.contactRight{
  width: calc(100% - 60px);
}
.contactRight p{
  font-weight: 500;
}
.contactItem{
  margin-bottom: 30px;
}
.contactRight p a{
  font-size: 20px;
  color: #444;
  padding-top:5px;
  display: inline-block;
}
.contactRight p a:hover{
  color: var(--primary-color);
}
.subMenu ul{
  display: none;
}
.subMenu.active ul{
  display: block;
}
.stickyItem{
  position: sticky;
  top: 80px;
  position: -webkit-sticky;
}
.overflowInherit{
  position: inherit;
}
.aboutLeft table td, .aboutLeft table th{
  font-size: 15px;
}
.itemImg{
  margin-bottom: 20px;
}
.itemImg img{
  height: 267px;
  width: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  object-fit: cover;
}
.formItem{
  margin-bottom: 15px;
}