*{margin: 0px;
padding: 0px;
box-sizing: border-box;
}

a{text-decoration: none;
}


.animate-delay{animation-delay: 1s;
}


/*****************Modal Button Start********************************/

.modal-content{border:2px solid #3e8513;
  border-radius: 5px;
  width: 70%;
  margin-top: 100px;
}

.modal-body input{margin: 15px 0px;
  font-size: 12px;
  outline: none;
}

.modal-body textarea{margin: 15px 0px;
  font-size: 12px;
  height: 100px;
  outline: none;
}

.modal-body select{font-size: 12px;
  outline: none;
}



.modal-body select option{text-transform: capitalize;
  outline: none;
}

.modal-header{border:none;
margin: 0px;
padding: 0px;
}

.modal-body h5{margin-top: -20px;
}
button.close {
outline: none;
position: relative;
right: 10px;
top: 5px;
}

.Get-quote-button{text-align: center;
}

.Get-quote-button button{outline: none;
}

.form-btn-submits{border:1px solid #3e8513;
padding: 5px 50px;
color: #3e8513;
margin-top: 20px;
font-weight: 600;
border-radius: 5px;
box-shadow: 0px 0px 10px #e8dddd;
}


.enquiry-form-btn input{outline: none;
border: 1px solid #3e8513;
    padding: 8px 20px;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0px 0px 10px #e8dddd;
    text-transform: uppercase;
}


/*****************Modal Button End********************************/



#scroll {
   border:1px solid #fff;
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#3e8513;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px;
    z-index: 9990;
}

#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color: #000;
    color: #fff;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}



#nav {
    z-index: 100;
    width: 100%;
    background-color: #fff;
    height: 75px;
    line-height: 75px;
    padding: 0px 100px;
}


#logo {
    display: inline-block;
    width: auto;
    float: left;
    height: auto;
}

#logo a img{width: 100%;
height: 100%;
}

#nav #menuWrapper {
    height: auto;
    display: block;
    text-align: right;
}

#nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

#nav ul > li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 15px 15px;
}

#nav ul > li:hover{background-color: #3e8513;
}

#nav ul > li > a {
    display: block;
    color: #000;
    font-weight: lighter;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    line-height:45px;
    font-weight: 500;
}


#nav ul li:hover a{color: #fff !important;
}

#nav .container ul > li > ul {
    position: absolute;
    left: 10px;
    opacity: 0;
    margin: 0;
    pointer-events: none;
    width: 180px;
 }

#nav .container ul > li > ul > li {
    padding: 0; 
    float: left;
    display: block;
    width:100%;
}

#nav .container ul > li > ul > li > a {
    border-bottom: 0;
    display: block;
    padding: 0 5px;
    color: #3e8513!important;
    width: 100%;
    padding: 0 5%;
  text-transform:none;
  text-align: left;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

#nav .container ul > li > ul > li:hover a{background-color: #3e8513;
color: #fff !important;

}

.ddFade {
   -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.ddFadeFast {
   -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ddFadeSlow {
   -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

/* General Animation settings */
#nav .container ul > li > ul {
  opacity:0;
  display:block;
  perspective:1000px;
  min-width:inherit;
  z-index: 99;
}

#nav .container ul > li > ul.dropin li {
  opacity:1;
  display:block;
  width:100%;
  padding:3px;
  display:block;
}

li:hover ul.hov {
  animation-duration: 0.3s;
  animation-delay 0.3s;
}

li:hover ul.hov li {
    animation-direction: normal;
    animation-iteration-count:1;
    animation-timing-function : ease-in-out;
    background:#333;
    animation-fill-mode: forwards;
}

/* Drop In */
#nav .container ul > li > ul.dropin li {opacity:0; transform: translate(0,-200px);
background-color: #3e8516;
top: 25px;
}
li:hover .dropin li {animation-name: dropin;}
@keyframes dropin {
    0%   {opacity:0; transform: translate(0,-200px);}
    100% {opacity:1; transform: translate(0,0);}
}
@-webkit-keyframes dropin {
    0%   {opacity:0; transform: translate(0,-200px); }
    100% {opacity:1; transform: translate(0,0);}
}
li:hover ul.dropin.hov li:nth-child(1) {
  animation-duration:0.7s;
  animation-delay 2s;
}
li:hover ul.dropin.hov li:nth-child(2) {
  animation-duration:0.6s;
  animation-delay 1.5s;
}
li:hover ul.dropin.hov li:nth-child(3) {
  animation-duration: 0.5s;
  animation-delay 1s;
}
li:hover ul.dropin.hov li:nth-child(4) {
animation-duration: 0.4s;
  animation-delay 0.5s;
}
li:hover ul.dropin.hov li:nth-child(5) {

  animation-duration: 0.3s;
  animation-delay 0.3s;
}

#nav .container ul > li > ul.dropup li {opacity:0; transform: translate(0,200px);}
li:hover .dropup li {animation-name: dropup;}
@keyframes dropup {
    0%   {opacity:0; transform: translate(0,200px);}
    100% {opacity:1; transform: translate(0,0);}
}
@-webkit-keyframes dropup {
    0%   {opacity:0; transform: translate(0,200px); }
    100% {opacity:1; transform: translate(0,0);}
}
li:hover ul.dropup.hov li:nth-child(1) {
  animation-duration: 0.3s;
  animation-delay 0.3s;
}
li:hover ul.dropup.hov li:nth-child(2) {
  animation-duration: 0.4s;
  animation-delay 0.5s;
}
li:hover ul.dropup.hov li:nth-child(3) {
  animation-duration: 0.5s;
  animation-delay 1s;
}
li:hover ul.dropup.hov li:nth-child(4) {
  animation-duration:0.6s;
  animation-delay 1.5s;
}
li:hover ul.dropup.hov li:nth-child(5) {
  animation-duration:0.7s;
  animation-delay 2s;
}


#nav .container ul > li > ul.twist li {
  transform: rotateY(90deg) ;
}
li:hover ul.twist.hov li {
    animation-name: twist;
}
@keyframes twist {
    0%   {opacity:0;  transform: rotateY(90deg);}
    100% {opacity:1; transform:  rotateY(0);}
}
@-webkit-keyframes twist {
    0%   {opacity:0;transform:  rotateY(90deg); }
    100% {opacity:1; transform: rotateY(0);}
}
li:hover ul.twist.hov li:nth-child(1) {
  animation-duration: 0.3s;
  animation-delay 0.3s;
}
li:hover ul.twist.hov li:nth-child(2) {
  animation-duration: 0.4s;
  animation-delay 0.5s;
}
li:hover ul.twist.hov li:nth-child(3) {
  animation-duration: 0.5s;
  animation-delay 1s;
}
li:hover ul.twist.hov li:nth-child(4) {
  animation-duration:0.6s;
  animation-delay 1.5s;
}
li:hover ul.twist.hov li:nth-child(5) {
  animation-duration:0.7s;
  animation-delay 2s;
}

/* Curl Right */
#nav .container ul > li > ul.curl li {
  opacity:1;
  transform: translateX(-200px) rotate(-90deg);
}
li:hover ul.curl.hov li { animation-name: curl; }
@keyframes curl {
    0%   {opacity:0;  transform: translateX(-50%) rotate(-90deg);}
    100% {opacity:1;transform: translateX(0) rotate(0deg);}
}
@-webkit-keyframes curl {
    0%   {opacity:0;  transform: translateX(-50%) rotate(-90deg); }
    100% {opacity:1;transform: translateX(0) rotate(0);}
}
li:hover ul.curl.hov li:nth-child(1) {
  animation-duration: 0.3s;
  animation-delay 0.3s;
}
li:hover ul.curl.hov li:nth-child(2) {
  animation-duration: 0.4s;
  animation-delay 0.5s;
}
li:hover ul.curl.hov li:nth-child(3) {
  animation-duration: 0.5s;
  animation-delay 1s;
}
li:hover ul.curl.hov li:nth-child(4) {
  animation-duration:0.6s;
  animation-delay 1.5s;
}
li:hover ul.curl.hov li:nth-child(5) {
  animation-duration:0.7s;
  animation-delay 2s;
}

/* Curl Left */
#nav .container ul > li > ul.curlGoofy li {
  opacity:1;
  transform: translateX(200px) rotate(90deg);
}
li:hover ul.curlGoofy.hov li { animation-name: curlGoofy; }
@keyframes curlGoofy {
    0%   {opacity:0;  transform: translateX(50%) rotate(90deg);}
    100% {opacity:1;transform: translateX(0) rotate(0deg);}
}
@-webkit-keyframes curlGoofy {
    0%   {opacity:0;  transform: translateX(50%) rotate(90deg); }
    100% {opacity:1;transform: translateX(0) rotate(0);}
}
li:hover ul.curlGoofy.hov li:nth-child(1) {
  animation-duration: 0.3s;
  animation-delay 0.3s;
}
li:hover ul.curlGoofy.hov li:nth-child(2) {
  animation-duration: 0.4s;
  animation-delay 0.5s;
}
li:hover ul.curlGoofy.hov li:nth-child(3) {
  animation-duration: 0.5s;
  animation-delay 1s;
}
li:hover ul.curlGoofy.hov li:nth-child(4) {
  animation-duration:0.6s;
  animation-delay 1.5s;
}
li:hover ul.curlGoofy.hov li:nth-child(5) {
  animation-duration:0.7s;
  animation-delay 2s;
}

/* Swing In right */
#nav .container ul > li > ul.swing { 
  transform: translate(-50px,0) rotateY(-90deg); 
}
li:hover ul.swing.hov {
  animation-name: swing;
  animation-fill-mode: forwards;
}
@keyframes swing {
    0%   {opacity:0; transform: translate(-50px,0) rotateY(-90deg);}
    100% {opacity:1; transform: translate(0,0) rotateY(0);}
}
@-webkit-keyframes swing {
    0%   {opacity:0; transform: translate(-50px,0) rotateY(-90deg); }
    100% {opacity:1; transform: translate(0,0) rotateY(0);}
}

/* Swing In Left */
#nav .container ul > li > ul.swingLft { 
  transform: translate(50px,0) rotateY(90deg); 
}
li:hover ul.swingLft.hov {
  animation-name: swingLft;
  animation-fill-mode: forwards;
}
@keyframes swingLft {
    0%   {opacity:0; transform: translate(50px,0) rotateY(90deg);}
    100% {opacity:1; transform: translate(0,0) rotateY(0);}
}
@-webkit-keyframes swingLft {
    0%   {opacity:0; transform: translate(50px,0) rotateY(-0deg); }
    100% {opacity:1; transform: translate(0,0) rotateY(0);}
}

/* sort all the overing, going on... */
#nav ul li:hover a { 
  color: #999;
}
#nav .container ul > li:hover ul {
    opacity:1;
    top:24px;
    pointer-events: auto;
  }
#nav .container ul > li > ul .ico:hover, 
#nav .container ul > li > ul a:hover {}
#nav .container ul > li:hover ul { top :45px; 
margin-left: -10px;
}

#hamburger {
    display: none;
    width: 25px;
    height: 24px;
    position: fixed;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

#hamburger > span {
    background: #000;
    display: block;
    width: 100%;
    height: 3px;
    position: relative;
    margin-top: 3px;
    right: 0px;
    color: #000;
      -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    -ms-transition:all .3s ease;
    -o-transition:all .3s ease;
    transition:all .3s ease;
}

#close {
    position: fixed;
    top: 10px;
    right: 13px;
    width: 30px;
    height: 30px;
    z-index: 1200;
    display: none;
    cursor: pointer;
}

#close > span, #close > span::after {
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    background: #eee;
    position: absolute;
    left: 50%;
    margin-left: -3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#close > span::after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#close:hover > span,
#close:hover > span::after { background: #ccc; }
#hamburger:hover > span,
#hamburger:hover > span::after,
#hamburger:hover > span::before {
  background: rgba(250,250,250,0.5);
}

/* Sort the responsive menu */
@media only screen and (max-width: 1000px) {
  
#hamburger {
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

#close {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  display: block;
}
  
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  height: 50px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #333;
}

#nav ul {
  display: none;
  opacity: 0;
}

#nav ul > li {
  float: none;
  border-bottom: 1px solid #555;
  display: block;
  padding: 0;
}

#nav ul > li:last-child {
  border-bottom: none !important;
}

#nav ul > li:last-child {
  border-bottom: none;
}

#nav ul > li > a {
  display: block;
  text-align: left;
  padding: 0px 0;
  color: #ccc;
  width: 100%;
  margin: 0 auto;
  border-bottom: none;
  font-size: 1.2em;
}

#nav .container ul > li > ul {
  top: 0;
  padding: 2px 0;
}

#nav.showNav {
  background-color: #333;
  height: calc(100%);
}

#nav.showNav #menuWrapper {
  height: 300px;
  overflow-y: auto;
}

 .contained {
  padding-top: 5px;
}

#nav .contained {
  height: 50px;
}

#nav.showNav .contained {
  height: auto;
}

#nav.showNav .container {
  height: auto;
  float: left;
  display: block;
  width: 100%;
}

#nav.showNav ul {
  opacity: 1;
  display: block;
  position: static;
  padding: 0 5%;
  width: 100%;
  font-size: 0.8em;
}

#nav.showNav #hamburger {
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
}

#nav.showNav #close {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

#nav ul:first-child { 
  width:96%;
  padding: 0 2%;
  float: left;
  display:block;
}
  
#nav ul li {
  display: block;
  clear: both;
  overflow: hidden;
  width:100%;
}

#nav .container ul > li > ul {
  position: static;
  opacity: 1;
  pointer-events: auto;
  display: block;
  width:100%;
  float:left;
  margin:0;
  padding:0;
}
  
  /* reset all the sub nav animations and styles! */
  #nav .container ul > li > ul > li, #nav .container ul > li > ul {
    border: none !important;
    opacity:1 !important;
    display:block !important;
    transform: translate(0,0) rotate(0) !important;
    -webkit-animation: initial !important;
    animation-play: initial !important;
  }
  
#nav .container ul > li > ul > li:hover,
#nav .container ul > li:hover,
#nav .container ul > li:hover a,
#nav .container ul > li > ul .ico:hover {
  background-color: transparent;
  border-bottom: none;
  color: #fff;
}

#nav ul > li > a:hover {
  background-color: transparent;
  border-bottom: none;
}
  
}


#slidy-container { 
  width: 100%;
  overflow: hidden; 
  margin: 0 auto;
}

.slides{width: 100%;
height: 400px;
}

.footer-fourth {
    text-align: right;
}

.download-browser {
    text-align: right !important;
}

#download-browser-btn {
    border: 1px solid #3e8513;
    font-size: 14px;
    font-weight: 600;
    padding: 5px;
    border-radius: 2px;
    background-color: #3e8513;
    color: #000;
    text-decoration: none;
}


.headline {
  padding-top: 5px;
  align-items: center;
  background-color: #3e8513;
}
.headline marquee{color: #fff;
text-transform: uppercase;
font-size: 12px;
}


.welcome{
  padding:50px 0px;
}

.welcome-content{background-color: #fff;
padding: 20px 30px 30px 30px;
box-shadow: 0px 0px 5px #e8dddd;
}

.welcome-content h3{font-size: 20px;
}

.welcome-content p{font-size: 13px;
  text-align: justify;
}

.welcome h1{font-size: 22px;
margin-bottom: 40px;
border-bottom: 2px solid #3e8513;
width: 370px;
padding-bottom: 5px;
}

.welcome-img img{width: 100%;
height: 306px;
}

.about-us-page-content h4 span{font-size: 16px;
}

.product{padding: 50px 0px;
  background-color: #f3eeee;
}

.product .item:hover .item-overlay.top {
  top: 0;
}
.product .item:hover .item-overlay.right {
  right: 0;
  left: 0;
}
.product .item:hover .item-overlay.bottom {
  bottom: 0;
}
.product .item:hover .item-overlay.left {
  left: 0;
}

.product .item-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: #3e8513;
  color: #fff;
  overflow: hidden;
  text-align: center;
  width: 100%; 
  -moz-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  -webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}

.product .item img{width: 100%;
}
.product .item-overlay.top {
  padding: 90px 0px 0px 0px;
  top: 100%;
}

.product .item-overlay.top a{color: #fff;
text-decoration: none;
font-size: 18px;
}

.product .item-overlay.right {
  right: 200%;
  left: -100%;
}
.product .item-overlay.bottom {
  bottom: 100%;
}
.product .item-overlay.left {
  left: 100%;
}


.product .item {
  position: relative; 
  border: 2px solid #3e8513;
  float: left;
  margin: 10px 0px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 200px;
}
.product .item img {
  max-width: 100%;
  height: 100%;
}

.product .product-heading h1{font-size: 22px;
margin-bottom: 40px;
border-bottom: 2px solid #3e8513;
width: 303px;
padding-bottom: 5px;
}

.product-content h4{font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}







.clients{width: 100%;
height: 300px;
display: flex;
align-items: center;
}

.clients h1{font-size: 22px;
margin-bottom: 40px;
border-bottom: 2px solid #3e8513;
width: 136px;
padding-bottom: 5px;
}

.logo-slider {
  background: white;
  -webkit-box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.125);
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  text-align: center;
}

.logo-slider .logo-slide-track {
  -webkit-animation: logo-scroll 60s linear infinite;
  animation: logo-scroll 60s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(250px * 14);
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

.logo-slider .slide {
  height: 150px;
  width: 250px;
  padding: 20px;
}

.logo-slider .slide img {
    height: 50px;
    width: 100px;
}

@-webkit-keyframes logo-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes logo-scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }

}


footer {
    background-color: #bdb6b6;
    padding: 50px 0px;
}

.Company-location iframe{
  border:5px solid #fff !important;
border-radius: 5px;
height: 200px;
width: 100%;
}

.footer-ul ul li a{text-decoration: none;
color: #fff;
text-transform: uppercase;
font-size: 12px;
}

.footer-ul ul li{list-style: none;
border-bottom: 1px solid #fff;
margin: 0px 0px 10px 0px;
}

.footer-second{padding: 0px 0px;
}
.footer-second P{color: #FFF;
margin: 0px 0px 15px 0px;
font-size: 12px;
}

.footer-second span{color: #fff;
  font-size: 13px;
}

.footer-second span i{color:  #4ebf4e;
height: 35px;
width: 35px;
background-color: #fff;
border-radius: 50px;
text-align: center;
padding-top: 10px;
margin: 2px 0px;
}
h3{font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
  color: #fff;

}

.download-browser button{border:1px solid #fff;
background-color: #fff;
padding: 5px 10px;
border-radius: 2px;
color: #3e8513;
font-weight: 500;
outline: none;
}

.download-browser img{width: 100%;
margin-bottom: 20px;
border-radius: 2px;
}

.download-browser {
    text-align: center;
}

.mini-footer{align-items: center;
width: 100%;
height: auto;
}

.mini-footer p{font-size: 13px;
padding-top: 10px;
}

.mini-footer-right{text-align: right;
}




/********************ABOUT US********************************/

.about-us-page{padding: 10px 0px 50px 0px;
  background-color: #f3eeee;
}


.about-us-page-content h6{font-size: 16px;
  margin: 10px 0px 15px 0px;
  font-weight: 700;
}

.about-us-page-content p{font-size: 13px;
  text-align: justify;
}

.about-us-page-content ul{margin: 20px 0px 0px 20px;
  font-size: 13px;
}



/********************OUR PLAN********************************/

.main-headling h1{
  font-size: 25px;
}

.main-headling{background-color: #3e8513;
color: #fff;
width: 100%;
align-items: center;
height: 50px;
display: flex;
padding: 50px 0px;

}

.about-us-page img{width: 100%;
height: 300px;
margin: 20px 0px;
border:5px solid #3e8513;
}


/********************career********************************/

.career-img a img{width: 100%;
  height: 300px;
}

.fill-form{width: 70%;
margin: 0 auto;
}

.fill-form input,textarea{margin: 20px 0px;
border:1px solid #3e8513;
}
.fill-form textarea{border:1px solid #3e8513;
}

.fill-form .upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.fill-form .btn {
  border: 1px solid #3e8513;
  background-color: white;
  font-size: 12px;
}
.upload-btn-wrapper button{width: 100% !important;
}
.fill-form .upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.form-btn-submit {background-color: #3e8513;
border:1px solid #fff;
padding: 5px 20px;
border-radius: 2px;
color: #fff;
}


.fill-form input{font-size: 12px;
}

.jobs{padding: 50px 0px;
}

.jobs-content p{font-size: 13px;
}

.upload-btn-wrapper{width: 100%;
}

.upload-btn-wrapper .cv-upload{width: 100%;
}


/****************************CONTACT US*********************************/
.contact-us-map .Company-location{border:5px solid #3e8513;
}
.contact-us-map .Company-location iframe{
  width:100%;
  height: 275px;
}

.contact-us-map h5{padding-bottom: 15px;
}

/********************************our reach**************************************/


.reach{padding: 50px 0px;
text-align: center;
}

.reach .reach-map a img{width: 40%;
}


/********************************CORED-WIRE**************************************/


.cored-wire{padding: 50px 0px;
}

.cored-wire-img a img{width: 100%;
}

.cored-wire-content table{font-size: 12px;
}

.cored-wire-content table th{background-color: #3e8513;
color: #fff;
}

/********************************ferro-alloys-products-details **************************************/



#overflowTest {
  color: white;
  padding: 15px;
  width: 100%;
  height: 450px;
  overflow: auto;
}

.ferro-alloys-products{
  display: flex;
  width: 100%;
  align-items: center;
padding: 50px 120px;
}

.ferro-alloys-products h5{color: #000;
}

.ferro-alloys-products-content table{border:1px solid #3e8513;
}
.ferro-alloys-products-content table, .fram2 table {
    border-collapse: collapse;
    margin: 10px 0px 20px 0px;
    width: 100%;
    font-size: 12px;
    max-width: 100%;
}

.ferro-alloys-products span {
    font-weight: 500;
    color: #3e8513;
}

p.Product-prices {
    text-align: center;
    margin: 10px 0px 0px 0px;
    font-weight: 600;
}

.ferro-alloys-products ul {
    margin: 10px 0px 20px 35px;
    color: #000;
}

.ferro-alloys-products span {
    font-weight: 600;
    color: #3e8513 !important;
margin-right: 5px;
}
.ferro-alloys-products p{color: #000;
  font-weight: normal;
}

.ferro-alloys-products-content .w16 table, .w16 td {
    overflow: auto;
    max-width: 500px;
    border: 1px solid #999;
}

.ferro-alloys-products-content tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.ferro-alloys-products-content table tr td:first-child, table tr th:first-child {
    border-right: #e3e3e3 1px solid;
    width: 35%;
}

.ferro-alloys-products-content table tr td, .isq table tr th {
    border: 0;
    border-bottom: solid 1px #e3e3e3;
    text-align: left;
    padding: 8px 8px 9px 12px;
    vertical-align: top;
}

.ferro-alloys-products-content  table tr td, .fram2 table tr td {
    border: solid 1px #e3e3e3;
    padding: 8px 8px 9px 12px;
    text-align: left;
}

.ferro-alloys-products-content .w16 table, .w16 td {
    overflow: auto;
    max-width: 500px;
    border: 1px solid #999;
}

.ferro-alloys-products-content .ds3, .dspc {
    display: table-cell;
}

.ferro-alloys-products-content tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
    color: #000;
}
 .ferro-alloys-products-content table tr td:first-child, .isq table tr th:first-child {
    border-right: #3e8513 1px solid;
    width: 35%;
}

.ferro-alloys-products-content table tr td, .isq table tr th {
    border: 0;
    border-bottom: solid 1px #3e8513;
    text-align: left;
    padding: 8px 8px 9px 12px;
    vertical-align: top;
}

.ferro-alloys-products-img{width: 30%;
}

.ferro-alloys-products-img img{border:3px solid #3e8513;
border-radius: 2px;
width: 100%;
height: 300px;
}


.ferro-alloys-products-content{
  width: 70%;
  margin-left: 50px;
text-align: justify;
font-size: 14px;
}



/********************************FERRO ALLOY LUMPS **************************************/


.ferro-alloys-lump{padding: 50px 0px;
}

.ferro-alloys-lump-img{margin: 20px 0px;
}
.ferro-alloys-lump-img img{width: 100%;
height: 200px;
border:3px solid #3e8513;
}

.ferro-alloys-lump-content{background-color: #f3eeee;
padding: 0px 15px;
margin: 10px 0px;
}

.ferro-alloys-lump-contents{margin: 20px 0px;
}

.ferro-alloys-lump-table table{font-size: 12px;
  margin-top: 50px;
}

.ferro-alloys-lump-table table th{background-color: #f3eeee;
}

.ferro-alloys-lump-table table tr td:first-child, table tr th:first-child {
    width: 10%;
}

.ferro-alloys-lump-contents h4{font-size: 16px;
}

.ferro-alloys-lump-contents p{font-size: 13px;
}












@media screen and (max-width:1024px){

#nav {
    z-index: 100;
    width: 100%;
    background-color: #fff;
    height: 75px;
    line-height: 75px;
    padding: 0px 20px;
}
.product .product-heading h1 {
    font-size: 22px;
    margin-bottom: 40px;
    border-bottom: 2px solid #3e8513;
    width: 303px;
    padding-bottom: 5px;
}


}

@media screen and (max-width:768px){

  #nav {
    z-index: 100;
    width: 100%;
    background-color: #fff;
    height: 75px;
    line-height: 0px;
    padding: 10px 10px;
}

#hamburger {
    width: 25px;
    height: 24px;
    position: fixed;
    right: 25px;
    top: 30px;
    cursor: pointer;
}

#hamburger > span {
    background: #000;
    display: block;
    width: 100%;
    height: 3px;
    position: relative;
    margin-top: 3px;
    right: 0px;
    color: #000;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.welcome {
    padding: 20px 0px;
}
.product-content h4 {
    font-size: 14px;
    text-align: center;
    margin-bottom: 0px;
}

.main-headling {
    background-color: #3e8513;
    color: #fff;
    width: 100%;
    align-items: center;
    height: 0px;
    display: flex;
    padding: 50px 0px;
    margin: 50px 0px 0px 0px;
 }

 .main-headling h1 {
    font-size: 25px;
    margin: 26px 0px 0px 0px;
}

#nav .container ul > li > ul.dropin li {
    opacity: 0;
    transform: translate(0,-200px);
    background-color: #3e8516;
    top: 0;
}

#nav ul:first-child {
    width: 100%;
    padding: 0 2%;
    float: left;
    display: block;
}


button#GetFile {
    font-size: 13px;
    margin: 10px 0px 0px 0px;
}

.cored-wire {
    padding: 20px 0px;
}
.cored-wire-content table {
    font-size: 13px;
}


.fill-form {
    width: 90%;
    margin: 0 auto;
}
.product .product-heading h1 {
    font-size: 22px;
    margin-bottom: 40px;
    border-bottom: 2px solid #3e8513;
    width: 303px;
    padding-bottom: 5px;
}

}





@media screen and (max-width:480px){

nav#nav {
    padding: 0px;
    margin: 0px;
}

#nav {
    z-index: 100;
    width: 100%;
    background-color: #fff;
    height: 50px;
    line-height: normal;
    padding: 0px 100px;
   }
   #logo {
    display: inline-block;
    width: 120px;
    float: left;
    height: 45px;
  }

  #logo a img {
    width: 80%;
    height: 100%;
    padding: 5px;
   }

   #nav .container ul > li > ul.dropin li {
    opacity: 0;
    transform: translate(0,-200px);
    top: 0px;
   }

  .slides {
    width: 100%;
    height: 200px;
  }

  .headline marquee {
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
  }

  .welcome h1 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 2px solid #3e8513;
    width: 267px;
    padding-bottom: 5px;
  }
  .welcome {
    padding: 20px 0px;
    text-align: center;
   }

   .welcome-content {
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 0px 5px #e8dddd;
   }
   .welcome-content p {
    font-size: 13px;
    text-align: justify;
  }
  .welcome-img img {
    width: 100%;
    height: 200px;
  }

  .product {
    padding: 20px 0px;
    background-color: #f3eeee;
  }

  .product .product-heading h1 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3e8513;
    width: 248px;
    padding-bottom: 5px;
   }

   .product .item {
    position: relative;
    border: 2px solid #3e8513;
    float: left;
    margin: 10px 0px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 150px;
  }
  .product-content h4 {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
   }
   .clients {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
  }
  .clients h1 {
    font-size: 18px;
    margin-bottom: 10px;
    width: 128px;
    padding-bottom: 5px;
   }

   .logo-slider .slide {
    height: 100px;
    width: 250px;
    padding: 20px;
   }

   .Company-location iframe {
    border: 5px solid #fff !important;
    border-radius: 5px;
    height: 150px;
    width: 100%;
   }
   .footer-second {
    padding: 20px 0px;  
   }

   h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
  }

  .footer-third {
    padding: 20px 0px;
}

.footer-second P {
    color: #FFF;
    margin: 0px 0px 5px 5px;
    font-size: 12px;
  }
footer {
    background-color: #3e8513;
    padding: 20px 0px;
  }

.footer-first {
    padding: 0px 0px 20px 0px;
}
.footer-fourth {
    padding: 20px 0px 0px 0px;
}
  .mini-footer p{
    text-align: center;
    width: 100%;
    height: auto;
    font-size: 12px;
}

.mini-footer p {
    font-size: 13px;
    padding-top: 5px;
  }

  .main-headling h1 {
    font-size: 18px;
    text-align: center;
   }

   .main-headling {
    background-color: #3e8513;
    color: #fff;
    width: 100%;
    align-items: center;
    height: 50px;
    display: flex;
    padding: 20px 0px;
    margin: 50px 0px 0px 0px;
   }
    .about-us-page {
    padding: 10px 0px 20px 0px;
    background-color: #f3eeee; 
 }

 .about-us-page-content h6 {
    margin: 10px 0px 10px 0px;
    font-weight: 700;
  }

  .about-us-page-content p {
    font-size: 14px;
    margin-left: 0px;
    text-align: justify;
    font-size: 13px;
  }

  .about-us-page-content ul {
    margin: 0px 0px 10px 20px;
    font-size: 12px;
  }

  .about-us-page img {
    width: 100%;
    height: 200px;
    margin: 20px 0px;
    border: 5px solid #3e8513;
  }

  .cored-wire {
    padding: 20px 0px;
  }

  .cored-wire-content table {
    font-size: 10px;
    width: 100%;
    display: none;
  }

  .cored-wire-img h5 {
    font-size: 12px;
  }

  .ferro-alloys-lump-table table {
    font-size: 12px;
    margin-top: 50px;
    display: none;
   }

   .career-img a img {
    width: 100%;
    height: 100px;
   }

   .jobs {
    padding: 20px 0px;
   }

   .jobs-content h5 {
    font-size: 16px;
    font-weight: 700;
}

.jobs-content p {
    font-size: 13px;
}

.fill-form {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
}

.contact-us-map .Company-location iframe {
    width: 100%;
    height: 200px;
 }

.main-headling h1 {
    font-size: 25px;
    margin: 5px 0px 0px 0px;
}
.welcome h1 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 2px solid #3e8513;
    width: 270px;
    padding-bottom: 5px;
}

#hamburger {
    width: 25px;
    height: 24px;
    position: fixed;
    right: 25px;
    top: 18px;
    cursor: pointer;
}


}

