*{margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}

i.fa.fa-caret-down {
    color: #16469d;
    display: none;
}

.top-line{width: 100%;
height: 5px;
background-color: #000;
display: flex;
}

.top-line span{width:25%;
height: 5px;
}

.top-line .one{background-color: #16469d;
}
.top-line .two{background-color: #000;
}


.header{width: 100%;
height: 120px;
display: flex;
align-items: center;
margin: 0px;
padding: 0px 100px;
background-color: #fff;
}

.header-left{
  width: 50%;
}

.header-right{
  width: 50%;
  display: flex;
}

.header-right p{
  font-size: 16px;
  font-weight: 500;
  padding: 0px 20px;
  border-right:1px solid #ccc;
  border-left:1px solid #ccc;
}
 
.header-right p a{
  font-size: 14px;
  color: #777;
  text-decoration: none;
}

.header-right p:first-child{
  border-right: none;
}
.header-right p i{
  color: #16469d;
    font-size: 22px;
    margin: 0px 5px;
}


  .navbar {
    width: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 0px 0px #ccc;
    padding: 0px 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999999;
    position: sticky;
    top: 0px;
    transition: 1s;
  }
  

.navbar-logo a{
  display: none;
}

#hamburger {
  width: 30px;
  position: relative;
  margin: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  border-radius: 9px;
  opacity: 1;
  left: 7px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2) {
  top: 11px;
}

#hamburger span:nth-child(3) {
  top: 22px;
}

#hamburger.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
}

#hamburger.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.sitenavigation ul {
  margin: 0;
  padding: 0;
}
.sitenavigation {
    padding: 0;
    margin: 0px;
}
.navbar-img{
  padding: 0px 25px;
}

.sitenavigation li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  margin-left: -4px;
  line-height: 20px;
}
.sitenavigation li.nav-dropdown:hover > a {
  background-color: #16469d !important;
  color: #fff;
}
.sitenavigation li a {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 20px 25px;
  font-size: 14px;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
}

.sitenavigation li a.nav-path-selected, .sitenavigation li a.linkclicked {
  color: white;
  background-color: #ECECEC;
}
.sitenavigation li a.nav-selected {
  background-color: #777;
  color: #000;
}
.sitenavigation li a:hover {
    background-color: #16469d !important;
    color: #fff;
}
.sitenavigation li.clicked > ul {
  display: block;
}
.sitenavigation li ul {
  display: none;
  position: absolute;
  min-width: 200px;
  max-width: 300px;
  padding: 0;
  margin: 0;
}
.sitenavigation li ul a {
  background-color: #fff;
  font-size:14px;
  font-weight: 400;
  border-bottom: 1px solid #ddd;
  transition: 1s;
  animation: list 1s;
}

.sitenavigation li ul li {
  float: none;
  display: block;
  margin: 0;
}
.sitenavigation li ul ul {
  left: 100%;
  margin-top: -40px;
}
.sitenavigation li ul ul a {
  background-color: #fff;
}
.sitenavigation .nav-dropdown:hover > a, .sitenavigation .nav-dropdown.clicked > a {
  background-color: #ECECEC;
}

.sitenavigation li:hover > ul {
  display: block !important;
}

.menu-icon {
  display: none;
}


@keyframes list {
  0%   {transform: translate(-25%,0);
    opacity: 0;
  }

  25%  {transform: translate(,0);
    opacity: 0;
  }

}


@media (max-width: 991px) {
  .navbar {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    max-width: 100%;
    z-index: 1;
  }
  .navbar .logo {
    float: right;
    font-weight: 800;
    padding: 5px;
    margin: 10px;
  }
  .navbar .menu-icon {
    width: 30px;
    height: 25px;
    padding-top: 0;
    margin-top: 7px;
    display: block;
    -webkit-tap-highlight-color: transparent;
    padding: 5px;
    padding-top: 1px;
    padding-bottom: 12px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .navbar .sitenavigation ul {
    display: none;
    max-width: none !important;
  }
  .navbar .sitenavigation li {
    float: none;
    display: block;
    margin: 0;
    padding: 0;
  }
  .navbar .sitenavigation.is-tapped > ul {
    display: block;
    position: absolute;
    margin: 0;
    background-color: #FFF;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 0;
  }
  .navbar .sitenavigation.is-tapped > ul a {
    width: 100%;
    margin: 0;
    background-color: #ECECEC;
    display: block;
    font-size: 1.1875em;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    height: auto;
    color: #758283;
    float: none;
    border: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar .sitenavigation.is-tapped > ul a:hover {
    background-color: #dfdfdf;
  }
  .navbar .sitenavigation.is-tapped > ul li {
    width: 100%;
    background-color: #f7f7f7;
    border-bottom: solid 1px #b9b9b9;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar .sitenavigation.is-tapped > ul li li {
    background-color: #fff;
  }
  .navbar .sitenavigation.is-tapped > ul ul {
    display: none;
    width: 100%;
    z-index: 200;
    border: none;
    margin-left: 0;
    padding: 0;
    position: relative !important;
  }
  .navbar .sitenavigation.is-tapped > ul ul ul {
    clear: both;
    left: 0;
    margin-top: 0;
  }
  .navbar .sitenavigation.is-tapped > ul ul li {
    border-bottom: solid 1px #f9f9f9;
  }
  .navbar .sitenavigation.is-tapped > ul ul li li a {
    background-color: #f9f9f9;
    padding-left: 30px;
  }
  .navbar .sitenavigation.is-tapped > ul ul a {
    background-color: #dfdfdf;
    font-size: 1em;
    padding-left: 20px;
  }
  .navbar .sitenavigation.is-tapped > ul ul a:before {
    content: "- ";
    display: inline-block;
    margin-right: 8px;
    color: #000;
  }
  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown {
    cursor: pointer;
  }
  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown > a {
    width: 80%;
  }
  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown:after {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    color: #000;
    padding: 0;
    display: block;
    width: 20%;
    right: 0;
    margin-top: -40px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar .sitenavigation.is-tapped > ul li.expanded:after {
    display: none;
  }
  .navbar .sitenavigation.is-tapped > ul li.expanded li:first-child:before {
    content: "\f106";
    font-family: FontAwesome;
    position: absolute;
    color: black;
    padding: 0;
    display: block;
    width: 20%;
    right: 0;
    margin-top: -40px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}



/**********************navbar end************************/






.contact-us-info{margin-top: 70px;
}
.contact-us-info h1{font-size: 22px;
font-weight: 800;
color: #16469d;
}

.contact-us-info ul li{list-style: none;
font-size: 14px;
padding: 0px 0px 10px 0px;
}

.contact-us-info ul li strong{color: #16469d;
}

.navbar-collapse ul li:hover ul{display: block;
  transition: 1s;
}
.navbar-collapse ul li ul{background-color: transparent !important;
}




.carousel-caption{background-color: #0000009c;
width: 100%;
height: 100vh;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
padding-top: 250px;
}

.carousel-inner .carousel-item{width: 100%;
height: 100vh;
}

.slider-text{
  width: 100%;
  height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption h5{font-size: 40px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 900;
}

.carousel-caption p{font-size:18px;
margin: auto;
width: 60%;
line-height: 1.5;
}

.carousel-caption a {text-transform: uppercase;
background-color: darkorange;
padding: 10px;
text-decoration: none;
padding: 10px 30px;
display: inline-block;
margin-top: 15px;
border-radius: 50px;
color: #000;
}

.carousel-item img{width: 100%;
  height: 100vh;
}





.our-mission{width: 100%;
padding: 0px 0px;
}

.ex{padding: 0px;               
margin: 0px;
}

.our-mission-text{text-align: center;
width: 100%;
height: 270px;
box-shadow: 0px 0px 2px #e4dede;
padding: 20px;
background-color: #ffffffc2;
color: #fff;
}

.mg{padding: 0px;
margin: 0px;
}

.our-mission-text h4{font-size: 22px;
padding-top: 10px;
}
.our-mission-text p{font-size: 14px;
  font-weight: 200;
}

.our-mission-text:hover{background-color: #16469d;
transition: 1s ease-out;
color: #fff;
padding: 0px 20px 20px 20px;
width: 100%;
}

.our-mission-text p{
  font-weight: 300;
line-height: 26px;
}

.om-text{background-color: #16469d;
color: #fff;
}
.om-text:hover{background-color: #000000c2;
color: #fff;
transition: 1s ease-out;
padding: 0px 20px 20px 20px;
}
.om-text p{font-weight: 300;
line-height: 26px;
}

.test-box-headline h2{font-size: 22px;
font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.text-line{text-align: center;
display: flex;
width: 100%;
height: 10px;
align-items: center;
justify-content: center;
padding: 0px 0px 50px 0px;
}

.test-box-headline .test-underline {
    width: 80px;
    border-bottom: 5px double #16469d;
    padding: 0px;
    margin-left: -175px;
}

.test-box-headline h2 span{
  color: #16469d;
    font-size: 30px;
    font-weight: 900;
}

.test-box{padding: 100px 0px 75px 0px;
}

.test-box-text{text-align: center;
width: 100%;
height: 300px;
padding: 20px;
}

.test-box-text:hover img{transform: scale(1.1);
  transition: all 1s ease-in-out;
}

.test-box-text h4{font-size: 22px;
margin: 20px 0px 0px 0px;
}

.footer{width: 100%;
  background-color: #16469d;
  padding: 50px 0px 100px 0px;
  margin: 0px;
}

.footer-text p{font-size: 14px;
  margin: 30px 0px 0px 0px;
  color: #fff;
  font-weight: 200;
  line-height: 24px;
}

.footer-text .icon-bar {text-align: left;
  margin: 20px 0px 0px 0px;
}

.footer-text .icon-bar a i{font-size: 30px;
border:1px solid #fff;
background-color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 5px;
}


.footer-text h4{font-size: 22px;
text-transform: uppercase;
font-weight: 500;
color: #fff;
margin: 0px 0px 20px 0px;
}


.footer-text ul{margin: 0px 0px 0px 0px;
}
.footer-text ul li{list-style: none;
  line-height: 24px;
  padding: 0px 0px 10px 0px;
  font-weight: 200;
}

.footer-text ul li{
  color: #fff;
  font-size: 14px;
}

.footer-text ul li a{color: #fff;
font-size: 14px;
text-decoration: none;
font-weight: 200;
text-transform: capitalize;
}
.footer-text ul li i{
  color: #fff;
  font-size: 14px;
  margin: 0px 5px 0px 0px;
  width: 15px;
}

.footer-text img{margin: -50px 0px 0px 0px;
}
.footer-text .footer-map iframe{width: 100%;
height: 100%;
}

.footer-text .footer-map{border:5px solid ;
width: 100%;
height: 150px;
}
.mini-footer{margin: 0px 0px 0px 0px;
  background-color: #08388e;
  border-radius:0px;
color: #fff;
padding: 20px 0px;
}

.mini-footer p{font-size: 13px;
margin: 0px;
padding: 0px;
}

.mini-footer-right{text-align: right;
padding: 0px 0px 0px 0px;
}
.em{margin: 0px;
padding: 0px;
}

.About-us-data-text h2{font-size: 40px;
  font-weight: 500;
  padding: 0px;
  margin: 0px;
}

.about-underline{width: 70px;
  border-bottom: 5px double #16469d;
  padding: 0px;
  margin: 10px 0px;
}

.About-us-data-text h4{text-transform: uppercase;
font-size: 18px;
font-weight: 500;
color: #646464;
margin: 0px;
padding: 30px 0px 0px 0px;
}

.About-us-data-text ul li{list-style: none;
font-size: 14px;
color: #777;
font-weight: 400;
line-height: 28px;
}

.About-us-data-text ul li i{font-size: 18px;
color: #16469d;
margin: 0px 5px 0px 0px;
}



.About-us-data-text p{font-size: 14px;
 color: #777;
 line-height: 24px;
}

.About-us-data-text span{font-size: 16px;
  color: #777;
  line-height: 28px;
}

.About-us-data{
  margin:0px;
background-color: #fff;
padding: 50px 0px;
}

.About-us-data-text h2 span{color: #16469d;
font-size: 30px;
  font-weight: 500;
}

.About-us-data-text{
  margin: 0px;
  padding: 20px 20px 50px 20px;
}

.about-us-text h3{
  font-size: 24px;
  font-weight: 500;
}

.about-us-text p{font-size: 14px;
line-height: 26px;
text-align: justify;
}
.about-ul li{font-size: 14px;
line-height: 26px; 
list-style: none;
}
.about-ul li i{
color: #16469d;
}

.about-ul {
  margin-left: 10px;
}
.company-growth-headline h3{
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: left;
}
.about-us-img {
    padding: 60px 0px 0px 0px;
}
.about-us-text {
    width: 110%;
    height: auto;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    padding: 50px;
    margin-left: -10%;
}

.company-growth-headline{text-align: center;
}





/*********************about Button*************************/

.query-btn{padding-top:20px;
}

.query-btn a {
  position: relative;
  //display:block;
  height: 45px;
  text-decoration: none;
  width: 150px;
  margin: 0px 0px;
  padding: 8px 10px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 2px;
  color: #16469d;
  border: 1px #16469d solid;
  border-radius: 4px;
  text-transform: uppercase;
  outline: 0;
  overflow:hidden;
  background: none;
  z-index: 1;
  cursor: pointer;
  transition:         0.08s ease-in;
  -o-transition:      0.08s ease-in;
  -ms-transition:     0.08s ease-in;
  -moz-transition:    0.08s ease-in;
  -webkit-transition: 0.08s ease-in;
}



.fill:hover {
  color: #fff;
  border: 1px #16469d solid;
}

.fill:before {
  content: "";
  position: absolute;
  background: #16469d;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  z-index: -1;
  -webkit-transition: right 0.3s ease-in;
}

.fill:hover:before {
  right: 0;
}




/********************about END BUTTON*********************************/


/*********************query Button*************************/

.query-button-btn{padding-top:0px;
}

.query-button-btn a {
  position: relative;
  //display:block;
  height: 45px;
  text-decoration: none;
  width: 150px;
  margin: 0px 0px;
  padding: 8px 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  border: 1px #fff solid;
  border-radius: 4px;
  text-transform: uppercase;
  outline: 0;
  overflow:hidden;
  background: none;
  z-index: 1;
  cursor: pointer;
  transition:         0.08s ease-in;
  -o-transition:      0.08s ease-in;
  -ms-transition:     0.08s ease-in;
  -moz-transition:    0.08s ease-in;
  -webkit-transition: 0.08s ease-in;
}

.query-button-btn .fill:hover {
  color: #000;
}

.query-button-btn .fill:before {
  content: "";
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  z-index: -1;
  -webkit-transition: right 0.3s ease-in;
}

.query-button-btn .fill:hover:before {
  right: 0;
}

/********************END BUTTON*********************************/


/*********************Contact Us Button*************************/



.contact-us-btn input {
  position: relative;
  //display:block;
  height: 45px;
  text-decoration: none;
  width: 150px;
  margin: 10px 7px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  color: #16469d;
  border: 2px #fff solid;
  border-radius: 4px;
  text-transform: uppercase;
  outline: 0;
  overflow:hidden;
  background: none;
  z-index: 1;
  cursor: pointer;
  transition:         0.08s ease-in;
  -o-transition:      0.08s ease-in;
  -ms-transition:     0.08s ease-in;
  -moz-transition:    0.08s ease-in;
  -webkit-transition: 0.08s ease-in;
}

.contact-us-btn .fill:hover {
  color: #16469d;
}

.contact-us-btn .fill:before {
  content: "";
  position: absolute;
  background: #03A9F4;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  z-index: -1;
  -webkit-transition: right 0.3s ease-in;
}

.contact-us-btn .fill:hover:before {
  right: 0;
}

.contact-us-details-text h5 {
    font-size: 22px;
    font-weight: 500;
    color: #000;
}






/********************END BUTTON*********************************/



/**********************logo slider*****************************/



/**********************logo slider end*****************************/






.query-button{width: 100%;
background-color: #16469d;
padding: 30px 0px 30px 0px;
}

.query-button-text h1{font-size: 18px;
padding: 0px;
margin:0px;
color: #fff;
text-transform: uppercase;
font-weight: 300;
}



.Contact-us-box {
    padding: 0px;
    background-image: url(../img/contact-us-bg.jpg);
    background-attachment: fixed;
    width: 100%;
    height: auto;
    margin: 0px 0px;
}


.contact-us-headline h1 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    color: #16469d;
}

.contact-us-headline h1 span {
    color: #16469d;
    font-size: 30px;
    font-weight: 900;
}

.contact-line {
    display: flex;
    width: 100%;
    height: 10px;
    padding: 0px 0px 50px 0px;
}
.contact-line .contac-underline {
    width: 80px;
    border-bottom: 5px double #fff;
    padding: 0px;
    margin-left: 0px;
}

.contact-us-form {
    margin: 0px 0px 0px 0px;
    background-color: #16469d;
    padding: 50px;
}


.contact-us-form form input{margin: 0px 0px 20px 0px;
border:1px solid #fff;
background-color: #F4F8FF;
outline: none;
}

.contact-us-form form textarea{
  border:1px solid #fff;
  margin: 0px 0px 40px 0px;
  background-color: #F4F8FF;
  outline: none;
}

.contact-us-form label{color: #fff;
font-size: 14px;
text-transform: uppercase;
font-weight: 200;
}

.contact-us-img img{width: 100%;
}


/***************why us***************************/

.why-us-bg{background-image: url("../img/bg-tracking.jpg");
background-size: cover;
background-position: center;
width: 100%;
height: auto;
background-attachment: fixed;
}

.why-us-data{
  width: 100%;
padding: 100px 0px 80px 0px; 
background-color: #ffffffc2;
}

.why-us-text-text{
  background-color: #fff;
  padding: 20px;
  margin: 0px 10px 30px 10px;
  width: 100%;
  height: 300px;
  border-radius: 5px;
  text-align: center;
}

.why-us-text-text img{
  width: auto;
  height: auto;
}

.why-us-text-text h4{
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 10px 0px;
  padding: 0px;
}

.why-us-text-text p{
  font-size: 14px;
margin: 0px;
padding: 0px 0px;
font-weight: 400;
color: #646464;
line-height: 24px;
}

.why-us-data-text ul li{
  width: 100%;
  line-height: 24px;
  margin: 0px 0px 10px 0px;
  list-style: none;
  display: flex;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.why-us-data-text ul li i{
  width: 5%;
  margin-top: 5px;
  color: #16469d;
  font-size: 18px;
}

.why-us-data-text ul li span{
  width: 95%;
}

.why-us-underline{
width: 70px;
border-bottom: 5px double #16469d;
padding: 0px;
margin: 20px 0px;
}

.why-us-data-text h2{
font-size: 40px;
font-weight: 500;
padding: 0px;
margin: 0px;
}

.why-us-data-text h2 span{
  color: #16469d;
    font-size: 30px;
    font-weight: 500;
}


/*******************why us end***************************/



.clients-logo{margin: 50px 0px 100px 0px;
}

.clients-logo-box{
  padding:  50px 10px 50px 10px;
  border-radius: 4px;
}


.logo-slider .slide {
    height: 150px;
    width: 100%;
    padding: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0px 0px 5px #ccc;
   margin-bottom: 30px;
   box-shadow: 10px;
}

.logo-slider .slide:hover{transform: scale(1.1) !important;
}

.logo-slider .slide img{width: auto;
height: auto;
}



.clients-logo-headline h2 {
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.clients-logo-headline h2 span {
    color: #16469d;
    font-size: 30px;
    font-weight: 500;
}


.text-line {
    text-align: center;
    display: flex;
    width: 100%;
    height: 10px;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 50px 0px;
}


.clients-underline {
    width: 75px;
    border-bottom: 5px double #16469d;
    padding: 0px;
    margin-left: -120px;
}






/*******************CONTACT US****************************************************/
.all-page-headline {
    background-image: url(../img/factory-bg.jpg);
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-page-headline-bgcolor {
    background-color: #ffffffb5;
    width: 100%;
    height: 100%;
}


.all-page-headline-main h1 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0px 1px 1px #8a8787;
    padding: 50px 0px 0px 0px;
    margin: 0px;
}

.all-page-headline-main {
    text-align: center;
}
.underline-all {
    width: 50px;
    border-bottom: 5px double #16469d;
    margin: 10px auto;
}

.underline-all{width: 70px;
border-bottom: 5px double #16469d;
}

.all-page-headline-main span{
color: #000;
font-size: 14px;
}
.all-page-headline-main span a{
  border-bottom: 1px solid #000;
color: #000;
text-decoration: none;
}


.contact-us-map-box iframe{width: 100%;
height: 400px;
border:5px solid #fff !important;
margin: 100px 0px 0px 0px;
border-radius: 5px;
box-shadow: 0px 0px 20px #ccc;
}

.contact-us-details-data{box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
width: 100%;
height: 150px;
padding: 20px;
display: flex;
align-items: center;
}

.contact-us-details-data a{
  text-decoration: none;
}


.contact-us-headline h2{font-size: 40px;
font-weight: 500;
color: #fff;
}

.contact-us-headline h2 span{font-size: 30px;
font-weight: 500;
color: #fff;
}


.contact-us-details-text i{font-size: 60px;
color: #16469d;
margin: 10px 0px 0px 0px;
}

.contact-us-details-text h5{font-size: 22px;
font-weight: 500;
}

.contact-us-details-text p{font-size: 14px;
margin: 0px;
padding: 1px 0px;
font-weight: 400;
color: #646464;
line-height: 24px;
}

.contact-us-details{padding: 100px 0px 100px 0px;
}

.career-headline h2{font-size: 28px;
font-weight: 500;
margin: 50px auto;
text-align: center;
color: #000;
border-bottom: 5px double #16469d;
width: 148px;
padding-bottom: 10px;
}

input#myFile {
    padding: 2px 0px 2px 2px;
}
.product-box{padding: 100px 0px 0px 0px;
width: 100%;
}
.padding-product{
  margin: 100px 0px 0px 0px;
}

.product-box-img img{width: 100%;
}
.product-box-text h2{font-size: 30px;
  font-weight: 500;
}
.product-box-text p{font-size: 14px;
}
.product-box-text h5{font-size: 20px;
font-weight: 500;
}

.product-box-text ul li{
  margin-left: 25px;
font-size: 14px;
line-height: 24px;
}

.product-table{padding: 0px 0px;
}
.product-table h2{font-size: 22px;
font-weight: 500;
}

.product-table .scroll table{box-shadow: 0px 0px 10px #ccc;
border-radius: 5px !important;
}

.product-table .scroll table tbody tr td{padding: 10px 0px 10px 5px;
}

.quality-img img{width: 100%;
}
.quality-box{padding: 100px 0px;
}

.quality-text{
  width: 100%;
  height: auto;
  box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
  padding: 50px;
}

.quality-text h4{font-size: 22px;
  font-weight: 500;
}

.quality-text ul li{margin-left: 10px;
  font-size: 14px;
}

.quality-text table tbody tr td{padding: 10px;
border:1px solid #000;
}

.quality-third,.quality-second h4{margin-top: 30px;
}

.about-us-box{padding: 50px 0px;
}
.about-us-box h4{font-size: 22px;
  font-weight: 500;
}
.about-us-box{padding: 100px 0px; 
}

.about-us-img img{width: 100%;
}



.nav-logo .navbar-brand{display: none;
}

.mini-footer-right p a {
    color: #fff;
}

/*************************logo slider*********************************/

.clients-logo-slider{
  padding: 100px 0px 50px 0px;
}

.clients-logo-slider .owl-carousel .item{
  width: 500px;
  text-align: center !important; 
}

.clients-logo-slider .owl-carousel .item img{
  width: 500px;
  box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
  margin: 10px 0px;
}


/*********************mission vision start*************************/

.mission-vision{
  width: 100%;
  height: auto;
  padding: 100px 0px;
}

.company-mission-text{
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
  padding: 50px;
  z-index: 999;
}
.company-mission-text h2{
  font-size: 40px;
    font-weight: 900;
    padding: 0px;
    margin: 0px 0px 10px 0px;

}
.company-mission-text h2 span {
    color: #16469d;
    font-size: 30px;
    font-weight: 900;
}

.company-mission-text p{
  font-size: 14px;
  color: #777;
  padding: 0px;
  margin: 0px;
}

#dots-mission{
  position: absolute;
  left: -50px;
  top: -100px;
  width: auto;
  height: auto;
  z-index: -99;
}

#dots-vision{
  position: absolute;
  right: -50px;
  top: -100px;
  width: auto;
  height: auto;
  z-index: -99;
}

.mission-padding{
  padding: 0px 0px 100px 0px;
}

.company-values{
  background-image: url(../img/values-bg.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 50px 0px;
}

.company-values-text h2{
  font-size: 40px;
    font-weight: 900;
    padding: 0px;
    margin: 0px 0px 10px 0px;
    color: #fff;
}

.company-values-text h2 span {
    color: #16469d;
    font-size: 30px;
    font-weight: 900;
}
.company-values-text p{
  font-size: 18px;
  color: #fff;
  padding: 0px;
  margin: 0px;
  line-height: 32px;
  font-weight: 300;
}




/*********************mission vision end*************************/


/*********************social responsibility*************************/

.social-responsibility{
  padding: 100px 0px; 
}

.healthcare-ul li{ 
  width: 100%;
  display: flex;
  height: auto;
  margin: 10px 0px;
}

.healthcare-ul li span{
  width: 95%;
   font-size: 14px;
  line-height: normal;
  line-height: 22px;
  text-decoration: none;
  list-style: none;
  color: #777;
}


.healthcare-ul li i{
  color: #16469d;
  width: 5%;
  margin-top: 3px;
}
.healthcare-ul{
  padding: 20px 0px 0px 0px;
}


.social-portfolio{
  width: 100%;
  height: 500px;
}

.portfolio-text{
  background-image: url(../img/portfolio-bg.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
}

.portfolio-text-overlay{
  background-color: #16469ddb;
  width: 100%;
  height: 500px;
  padding: 120px 50px 100px 100px;
}

.portfolio-text-overlay h2{
  font-size: 40px;
    font-weight: 900;
    padding: 0px;
    margin: 0px 0px 10px 0px;
    color: #fff;
}

.portfolio-text-overlay h2 span {
    color: #000;
    font-size: 30px;
    font-weight: 900;
}

.portfolio-text-overlay p{
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  font-weight: 300;
}


.responsibility-btn{
  margin-top: 30px;
}

.ep{
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 250px;
}

.portfolio-img{
  background-color: #000;
  width: 100%;
  height: 500px;
}

/***************images hover*****************/

.portfolio-img-img img{
  width: 100%;
  height: 250px;
  padding: 0px;
  margin: 0px;
}

.portfolio-img-img:hover img{
  transform: scale(1.1);
}

.portfolio-img-img {  
  width: 100%;
  height: 250px;
  overflow: hidden; 
  padding: 0px;
  margin: 0px;
}

.inner-img {
  transition: 0.3s;
}

.inner-img:hover {
  transform: scale(1.1);
}

/* Other styling elements, that are not necessary for the example */

.portfolio-img-img {
  display: inline-block;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  transition: all 1s ease-in-out;
}

.portfolio-text-bottom{position: absolute;
z-index: 9999;
bottom: 0px;
background-color:#000000b8;
width: 100%;
transition: all 1s ease-in-out;
}

.portfolio-text-bottom h3{
  display: none;
  font-size: 22px;
  padding: 10px 20px;
  transition: all 1s ease-in-out;
  color: #fff;
}

.portfolio-img-img:hover .portfolio-text-bottom h3{
  display: block;
  transition: all 1s ease-in-out;
}



/***********************why us*************************************/

.all-bg-boxs{padding: 100px 0px;
}

.why-us-img img{
  background-color: transparent;
}

.why-us-text{
  background-color: #fff;
}

.why-us-text ul li {color: #777;
  font-weight: 400;
}

.why-us-text h2{color: #000;
}

.why-us-text{
  width: 100%;
  box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
  height: auto;
}

.why-us-test{
  padding: 0px;
  margin: 0px;
}

.why-choose-point .card{
  margin: 20px 0px;
  border-top:1px solid #eee;
  outline: none !important;
}

.why-choose-point .card-header {
    border-radius: 0;
    margin-bottom: -1px;
    padding: 0 20px;
}

.why-choose-point button{font-size: 14px;
font-size: 14px;
    color: #000;
    font-weight: 400;
    border: none;
    padding: 0px;
    width: 100%;
    height: 60px;
    text-align: left;
    text-transform: capitalize;
    text-decoration: none !important;
    outline: none !important;
}

.why-choose-point .card-body{
  border: none;
  font-size: 14px;
  color: #777;
  line-height: 26px;
}

button.btn.btn-link.collapsed {
    outline: none !important;

}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
    border: none;
}

#why-errow{position: absolute;
right: 20px;
color: #16469d;
font-size: 20px;
font-weight: 100;
}

.why-choose{
  padding: 0px;
  margin: 100px 0px 0px 0px;
}


/*********************quality******************************/


.quality-control-box{
  padding: 100px 0px;
}


.test-box-bg{
  background-image: url(../img/chemical-bg.jpg);
  background-position: center;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
  background-attachment: fixed;
}


.test-box-layer{
 background-color: #16469ddb;
 padding: 50px 0px; 
}

.test-box-data-text h2{font-size: 40px;
    font-weight: 900;
    padding: 0px;
    margin: 0px 0px 10px 0px;
    color: #fff;
}

.test-box-data-text h2 span{
  color: #000;
    font-size: 30px;
    font-weight: 900;
}

.test-box-data-text p{
  font-size: 14px;
  padding: 0px;
  margin: 0px 0px 5px 0px;
  color: #fff;
}

.test-box-data-text ul li{
  font-size: 14px;
  margin: 0px 0px 0px 0px;
  list-style: none;
  line-height: 26px;
  color: #fff;
}

.test-box-data-text h4{
  font-size: 18px;
  margin: 30px 0px 10px 0px;
  color: #fff;
  font-weight: 500;
}

.test-box-data-text table{
  border:1px solid #fff;
  font-size: 14px;
  color: #fff;
}

.test-box-data-text table tr td{
  border:1px solid #fff;
  padding: 5px;
  font-weight: 300;
}

.product-table .scroll table tbody tr td {
    padding: 10px 0px 10px 5px;
    font-size: 13px;
    text-align: center;
}

.company-mission-text h5{
  font-size: 16px;
  padding: 0px;
  margin: 20px 0px 10px 0px;

}

.product-text-ul{
  padding: 0px;
  margin: 0px;
}

.product-text-ul li{
  font-size: 14px;
  list-style: none;
  color: #777;
}
.product-text-ul li i{
  color: #16469d;
}

.company-mission-text ul li{
  font-size: 14px;
  padding: 0px 0px 10px 0px;
  list-style: none;
  color: #777;
  width: 100%;
  display: flex;
}

.company-mission-text ul li i{
  width: 5%;
    margin-top: 5px;
    color: #16469d;
}

.company-mission-text ul li span{
 width: 95%;
}

.enquiry-us{
  margin: 0px 0px 0px 0px;
}

.enquiry-here{
  padding:50px 0px 20px 0px;
  text-align: center;
}
.enquiry-here .contact-us-headline h2{
  color: #000;
}

.enquiry-line {
    text-align: center;
    display: flex;
    width: 100%;
    height: 10px;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 20px 0px;
}

.enquiry-line .enquiry-underline {
    width: 80px;
    border-bottom: 5px double #16469d;
    padding: 0px;
    margin-left: -80px;
}

.all-clients-box{
  width: 100%;
  padding: 100px 0px 0px 0px;
}

.all-clients-box-data{
  width: 100%;
}

.all-clients-logo img{
  width: 100%;
  box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
  margin: 0px 0px 30px 0px;
}

.aluminium-text p{
  font-size: 14px;
  font-weight: 500;
  padding: 0px;
  margin: 0px;
  color: #777;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
}

.aluminum-facts{
  padding: 20px 0px 0px 0px;
}

.aluminum-facts button{
  font-size: 14px;
    color: #000;
    font-weight: 400;
    border: none;
    padding: 0px;
    width: 100%;
    height: 60px;
    text-align: left;
    text-transform: capitalize;
    text-decoration: none !important;
    outline: none !important;
}

.aluminum-facts .card {
    margin: 20px 0px;
    border-top: 1px solid #eee;
    outline: none !important;
}
.aluminum-facts .card-body {
    border: none;
    font-size: 14px;
    color: #777;
    line-height: 26px;
}

.aluminum-facts h2 {
    font-size: 40px;
    font-weight: 900;
    padding: 0px;
    margin: 0px 0px 0px 0px;
}

.aluminum-facts .card-body h6{
  font-size: 14px;
}

.aluminum-facts .card-body p{
  font-size: 14px;
}
.aluminum-facts .card-body ul{
  padding: 0px 20px;
}
.aluminum-facts .card-body ul li{
  font-size: 14px;
  line-height: 28px;
}


.why-us-text{
  padding: 50px 50px;
}

.why-us-text h2 {
    font-size: 22px;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
}

.why-us-text h2 span {
    color: #16469d;
    font-size: 30px;
    font-weight: 900;
}

.why-us-text ul li {
    width: 100%;
    line-height: 24px;
    margin: 0px 0px 10px 0px;
    list-style: none;
    display: flex;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}
.why-us-text ul li i {
    width: 5%;
    margin-top: 5px;
    color: #16469d;
    font-size: 18px;
}
.why-us-text ul li span {
    width: 95%;
}
.why-us-text p{
  font-size: 14px;
  line-height: 28px;
}
.why-us-text h5{
  font-size: 18px;
  margin: 40px 0px 10px 0px;
}

.choose-underline{
  width: 100px;
    border-bottom: 5px double #16469d;
    margin: 20px 0px;
}

.header-right p a .fa-linkedin-square{
  font-size: 28px;
}

.header-right p:last-child{
  border: none;
}

/***********************Media query*************************************/


@media screen and (max-width:1024px){

}

@media screen and (max-width:768px){
 .header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    margin: 0px;
    padding: 0px 20px;
    background-color: #fff;
}

.header-left {
    width: 50%;
    display: none;
}
.header-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    width: 100%;
    position: sticky;
    left: 0;
    top: 0px;
    right: 0;
    max-width: 100%;
    z-index: 999;
}
.navbar-logo a {
    display: block;
}
.navbar .menu-icon {
    position: absolute;
    width: auto;
    height: auto;
    padding-top: 0;
    margin-top: 0px;
    display: block;
    -webkit-tap-highlight-color: transparent;
    padding: 5px;
    padding-top: 1px;
    padding-bottom: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    right: 40px;
}

.navbar {
    width: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 0px 0px #ccc;
    padding: 0px 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 99999999999;
    position: sticky;
    top: 0px;
    transition: 1s;
}

a.navbar-brand {
    margin-left: 20px;
}
.header-right p {
    padding: 0px 30px;
    margin: 0px;
}
.navbar .sitenavigation.is-tapped > ul {
    display: block;
    position: absolute;
    margin: 0;
    background-color: #FFF;
    right: 0;
    left: 0;
    top: 100%;
    z-index: 100;
    padding: 0;
}

.navbar .sitenavigation.is-tapped > ul a {
    width: 100%;
    margin: 0;
    background-color: #ffffff;
    display: block;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    height: auto;
    color: #758283;
    float: none;
    border: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}
.navbar-img {
    padding: 10px 25px;
}

.navbar .sitenavigation.is-tapped > ul ul a {
    background-color: #ffffff;
    font-size: 14px;
    padding-left: 20px;
    border-bottom: 1px solid #ddd !important;
}
.navbar .sitenavigation.is-tapped > ul li {
    width: 100%;
    background-color: #f7f7f7;
    border-bottom: solid 1px #ddd;
    -webkit-tap-highlight-color: transparent;
}

.carousel-inner .carousel-item {
    width: 100%;
    height: 70vh;
}
.carousel-item img {
    width: 100%;
    height: 70vh;
}
.carousel-caption {
    background-color: #0000009c;
    width: 100%;
    height: 70vh;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding-top: 100px;
}

.carousel-caption h5 {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.carousel-caption p {
    font-size: 16px;
    margin: auto;
    width: 60%;
    line-height: 1.5;
}
.query-button-text h1 {
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 22px;
}

.why-us-text-text {
    background-color: #fff;
    padding: 20px;
    margin: 0px 0px 30px 0px;
    width: 100%;
    height: 270px;
    border-radius: 5px;
    text-align: center;
}
.why-us-data {
    width: 100%;
    padding: 50px 0px 30px 0px;
    background-color: #ffffffc2;
}

.test-box-text img {
    width: 100%;
}
.test-box {
    padding: 50px 0px 0px 0px;
}
.company-mission-text {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    padding: 20px;
    z-index: 999;
}
.contact-us-details-data {
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    width: 100%;
    height: 200px;
    padding: 20px;
    display: flex;
    align-items: center;
}
.contact-us-details-text i {
    font-size: 40px;
    color: #16469d;
    margin: 10px 0px 0px 0px;
}
.contact-us-details-text p {
    font-size: 12px;
    margin: 0px;
    padding: 1px 0px;
    font-weight: 400;
    color: #646464;
    line-height: 24px;
}

.about-us-box {
    padding: 0px 0px;
}

.about-us-text {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    padding: 20px;
    margin-left: 0px;
}
.about-ul {
    margin-left: 0px;
}
.navbar-collapse ul li ul {
    display: none;
    width: 100% !important;
    background-color: transparent !important;
    position: absolute;
    left: 0px;
    right: 0px;
}
i.fa.fa-caret-down {
    color: #16469d;
    display: block;
    position: absolute;
    right: 40px;
}

.navbar-collapse ul li a {
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 0px 20px;
    display: flex;
}
#dots-vision {
    position: absolute;
    right: -20px;
    top: -100px;
    width: auto;
    height: auto;
    z-index: -99;
}

#dots-mission {
    position: absolute;
    left: -20px;
    top: -100px;
    width: auto;
    height: auto;
    z-index: -99;
}

.navbar-collapse ul li:hover ul {
    display: block;
    transition: 1s;
    padding: 0px 0px;
    margin: 0px;
}
.clients-logo-slider .owl-carousel .item img {
    width: 340px;
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    margin: 10px 0px;
}
.clients-logo-slider .owl-carousel .item {
    width: 340px;
    text-align: center !important;
}




}





@media screen and (max-width:480px){
.header-right p a {
    font-size: 12px;
    color: #000;
    text-decoration: none;
}

.header-left {
    width: 50%;
    display: none;
}
.header-right {
    width: 100%;
    display: flex;
}

.header-right p {
    font-size: 12px;
    font-weight: 500;
    padding: 0px 10px;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
}
.header {
    width: 100%;
    height: 70px;
    margin: 0px;
    padding: 0px 0px;
    background-color: #fff;
}
.navbar {
    width: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 0px 0px #ccc;
    padding: 0px 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: normal;
    z-index: 99999999999;
    position: sticky;
    top: 0;
    transition: 1s;
}

span.menu-icon {
    position: absolute;
    right: 30px;
}
.navbar .sitenavigation.is-tapped > ul {
    display: block;
    position: absolute;
    margin: 0;
    background-color: #FFF;
    right: 0;
    top: 100%;
    left: 0;
    z-index: 100;
    padding: 0;
}
.navbar .sitenavigation.is-tapped > ul a {
    width: 100%;
    margin: 0;
    background-color: #fff;
    display: block;
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    height: auto;
    color: #000;
    float: none;
    border: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}
.navbar-img {
    padding: 10px 25px;
}
.navbar .sitenavigation.is-tapped > ul ul a {
    background-color: #ffffff;
    font-size: 14px;
    padding-left: 20px;
    border-bottom: 1px solid #ddd !important;
}

.navbar .sitenavigation.is-tapped > ul li {
    width: 100%;
    background-color: #f7f7f7;
    border-bottom: solid 1px #ddd;
    -webkit-tap-highlight-color: transparent;
}

.all-clients-logo {
    text-align: center;
    margin: 10px;
}
.all-clients-logo img {
    width: auto;
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    margin: 0 auto;
}
#dots-mission {
    position: absolute;
    left: 0px;
    top: -100px;
    width: auto;
    height: auto;
    z-index: -99;
}

#dots-vision {
    position: absolute;
    right: 0px;
    top: -100px;
    width: auto;
    height: auto;
    z-index: -99;
}

.carousel-inner .carousel-item {
    width: 100%;
    height: auto;
}

.carousel-item img {
    width: 100%;
    height: auto;
}
.query-button-text h1 {
    font-size: 12px;
    padding: 0px;
    margin: 0px 0px 20px 0px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 200;
    line-height: 24px;
}

.query-button {
    width: 100%;
    background-color: #1b273d;
    padding: 20px 0px 20px 0px;
}
.why-choose-us-img img {
    width: 100%;
    height: auto;
    background-color: #000000c2;
    padding: 50px 0px 0px 0px;
    margin: 0px;
}
.why-choose-us-text {
    width: 100%;
    height: auto;
}

.why-choose-us-text {
    background-color: #ffffffc2;
    padding: 20px;
}

.why-choose-us-text ul li i {
    width: 5%;
    margin-top: 5px;
}
.why-choose-us-text ul li span {
    width: 95%;
}
.contact-us-form {
    margin: 0px 0px 0px 0px;
    background-color: #1b273d;
    padding: 20px;
}
.footer-text h4 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    color: #16469d;
    margin: 20px 0px 10px 0px;
}

.footer-text ul li {
    list-style: none;
    line-height: 24px;
    padding: 0px 0px 5px 0px;
    font-weight: 200;
}
.footer {
    width: 100%;
    background-color: #1B273D;
    padding: 50px 10px 50px 10px;
    margin: 0px;
}

.all-page-headline {
    background-image: url(../img/factory-bg.jpg);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-page-headline-main h1 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0px 1px 1px #8a8787;
    padding: 0px 0px 0px 0px;
    margin: 0px;
    color: #fff;
}
.all-page-headline-main {
    text-align: center;
    padding: 20px 0px;
}
.all-page-headline-main span {
    color: #fff;
    font-size: 14px;
}
.all-page-headline-main span a {
    border-bottom: 1px solid #000;
    color: #fff;
    text-decoration: none;
}

.about-us-box {
    padding: 20px 0px;
}

.about-us-img {
    padding: 0px 0px 0px 0px;
}
.about-us-text {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    padding: 30px 20px 10px 20px;
    margin-left: 0px;
}
.clients-logo-slider {
    padding: 50px 0px 0px 0px;
}
.contact-us-details-data {
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    width: 100%;
    height: auto;
    margin: 10px 0px;
    padding: 20px;
    display: flex;
    align-items: center;
} 
.social-responsibility {
    padding: 100px 0px 0px 0px;
}
.contact-us-img {
    padding: 10px 0px;
}

.contact-us-details {
    padding: 50px 0;
}

.why-us-data {
    width: 100%;
    padding: 50px 0px 0px 0px;
    background-color: #ffffffc2;
}

.why-us-data-text ul li i {
    width: 8%;
    margin-top: 5px;
    color: #16469d;
    font-size: 18px;
}
.why-us-data-text ul li span {
    width: 92%;
}
.why-us-text-text {
    background-color: #fff;
    padding: 10px;
    margin: 0px 0px 15px 0px;
    width: 100%;
    height: 260px;
    border-radius: 5px;
    text-align: center;
}
.company-mission-text {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    padding: 10px;
    z-index: 999;
}
.company-mission-text h2 {
    font-size: 24px;
    font-weight: 900;
    padding: 0px;
    margin: 0px 0px 10px 0px;
}
.company-mission-text h2 span {
    color: #16469d;
    font-size: 20px;
    font-weight: 900;
}

.accordion>.card>.card-header {
    border-radius: 0;
    margin-bottom: -1px;
    padding: 10px 10px;
}

.mission-padding {
    padding: 0px 0px 0px 0px;
}
.company-mission-img {
    margin: 0px 0px 50px 0px;
}
.company-mission-text {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 1px 1px 50px 0px;
    padding: 20px 10px;
    z-index: 999;
    margin: 0px 0px 20px 0px;
}

.company-mission-text ul li i {
    width: 8%;
    margin-top: 5px;
    color: #16469d;
}

.company-mission-text ul li span {
width: 92%;

}
.portfolio-text-overlay {
    background-color: #16469ddb;
    width: 100%;
    height: auto;
    padding: 20px;
}
.portfolio-text {
    background-image: url(../img/portfolio-bg.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
}
.ep {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: auto;
}
.portfolio-img {
    background-color: #000;
    width: 100%;
    height: auto;
}

.social-portfolio {
    width: 100%;
    height: auto;
    padding: 10px;
}

.enquiry-here {
    padding: 30px 0px 20px 0px;
    text-align: center;
}

.navbar .navbar-brand {
    display: block;
}

.clients-logo-slider .owl-carousel .item img {
    width: 330px;
    box-shadow: rgb(0 0 0 / 5%) 1px 1px 50px 0px;
    margin: 10px 0px;
}

.clients-logo-slider .owl-carousel .item {
    width: 330px;
    text-align: center !important;
}


}