.bg-row, .about_row, .servic_row, .manufacturing{
  display: block;
  overflow: hidden;
}
.about{
	padding-top: 70px;
}
.about h2{
	color: #013554;
	font-weight: 600;
	font-size: 45px;
}
.about ul li{
    list-style-type: none;
}


.bg-img{
    position: relative;
    height: auto;
    
}
.bg-img h2{
    padding: 100px;
    font-size: 45px;
}
.article {
  width:100%;
  height:auto;
  display: inline-block;
  vertical-align: top;
 /* margin-top: 10px;*/
  position: relative;
  color:white;
}

.image {
  background-image: url('../images/about-bg.jpg');
 
  /*background-size: cover;
  background-attachment: fixed;
  height: auto;
  background-repeat: no-repeat;*/
}
/*.overlay:before{
  position: absolute;
  content:" ";
  top:0;
  left:0;
  width:100%;
  height:100%;
  display: block;
  z-index:0;
  background-color: rgba(12, 12, 12, 0.66);;
}*/
.article * {
    position: relative;
    /* hack */
}
/*-------------------------------srevices---------------------------*/
.serviceBox{
    padding: 35px 20px 35px 90px;
    position: relative;
     height: auto;
}
.serviceBox:before{
    content: "";
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px 0 rgba(119, 94, 28, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale3d(1.08, 1.08, 1.08);
    transition: all 0.33s ease 0s;
}
.serviceBox:hover:before{
    opacity: 1;
    transform: scale3d(1, 1, 1);
}
.serviceBox .service-icon{
    width: 52px;
    height: 60px;
    line-height: 60px;
    font-size: 34px;
    color: #e66c08;
    text-align: center;
    border: 2px solid #00496a;
    position: absolute;
    top: 55px;
    left: 20px;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon{ transform: translateY(20px); }
.serviceBox .service-icon:before,
.serviceBox .service-icon:after{
    content: "";
    height: 2px;
    background:#00496a;
    position: absolute;
    top: -20px;
    left: 10px;
    right: 10px;
    transition: all 0.3s ease 0s;
}
.serviceBox .service-icon:after{
    top: auto;
    bottom: -20px;
    left: 10px;
    right: 10px;
}
.serviceBox:hover .service-icon:before{
    top: -25px;
    transform: rotate(90deg);
}
.serviceBox:hover .service-icon:after{
    transform: rotate(-90deg);
    bottom: -25px;
}
.serviceBox .title{
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #474747;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    position: relative;
}
.serviceBox .description{
    font-size: 16px;
    text-align: justify;
    color: #807d7d;
    line-height: 25px;
    /* letter-spacing: 1px; */
    margin: 0;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 30px; 
     
    }
}
@media only screen and (max-width:767px){
    .serviceBox:before{ transform: scale3d(1, 1, 1); }
    .serviceBox .service-icon{ top: 30px; }
}
@media only screen and (max-width:480px){
    .serviceBox .service-icon{ top: 40px; }
}
