.company-header-home{
    width: auto;
    height: auto;
    float: right;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-header-home h3{
    width: 100%;
    height: auto;
    float: right;
    text-align: right;
    color: #1863AB;
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    text-align: right;
    padding: 17px 20px 0px 0px;
    margin: 0px 0px -13px 0px;
    line-height: 0px;
}

/*.company-header-home h3::before {
    top: 92px;
    left: 67px;
    font-family: FontAwesome;
    content: "\f095";
    margin-right: 5px;
}*/

.company-header-home h3 a{
    color: #1863AB;
}

.company-header-home h3 a:hover{
    color: #ED4B41;
}

.company-header-home h4{
    width: auto;
    height: auto;
    float: right;
    text-align: left;
    color: #1863AB;
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    text-align: right;
    padding: 16px 10px 0px 0px;
    margin: 0px 0px 14px 0px;
}

/*.company-header-home h4::before {
    top: 92px;
    left: 67px;
    font-family: FontAwesome;
    content: "\f0e0";
    margin-right: 5px;
}*/

.company-header-home h4 a{
    color: #1863AB;
}

.company-header-home h4 a:hover{
    color: #ED4B41;
}

.company-index{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 5px;
    margin: 0px 0px 0px 0px;
}

.company-index h1{
    width: 100%;
    height: auto;
    float: left;
    color: #1863AB;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 0px;
}

.company-index h1 span{
    color: #ED4B41;
}

.company-index h3{
    width: 100%;
    height: auto;
    float: left;
    color: #1863AB;
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-index p{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-index-our-service{
    width: 100%;
    height: auto;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-index-our-service h3{
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    line-height: 14px;
    color: #1863AB;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins",sans-serif;
    padding: 16px 0px 0px 0px;
    margin: 0px 0px 8px 8px;
}

.company-index-our-service h4{
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    line-height: 0px;
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    font-family: "Poppins",sans-serif;
    padding: 10px 0px 0px 0px;
    margin: 0px 0px 10px 8px;
}

.hovereffect {
    width:100%;
    height:100%;
    float:left;
    overflow:hidden;
    position:relative;
    text-align:center;
    cursor:default;
    margin-left: 8px;
}

.hovereffect .overlay {
    width:100%;
    height:100%;
    position:absolute;
    overflow:hidden;
    top:0;
    left:0;
    opacity:0;
    background-color:rgba(0,0,0,0.5);
    -webkit-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
}

.hovereffect img {
    display:block;
    position:relative;
    -webkit-transition:all .4s linear;
    transition:all .4s linear;
}

.hovereffect h2 {
    text-transform:uppercase;
    color:#fff;
    text-align:center;
    position:relative;
    font-size:17px;
    background:rgba(0,0,0,0.6);
    -webkit-transform:translatey(-100px);
    -ms-transform:translatey(-100px);
    transform:translatey(-100px);
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    padding:10px;
}

.hovereffect a.info {
    text-decoration:none;
    display:inline-block;
    text-transform:uppercase;
    color:#fff;
    border:1px solid #fff;
    background-color:transparent;
    opacity:0;
    filter:alpha(opacity=0);
    -webkit-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    margin:50px 0 0;
    padding:7px 14px;
    font-size: 20px;
    margin-top: 80px;
}

.hovereffect a.info:hover {
    box-shadow:0 0 5px #fff;
}

.hovereffect:hover img {
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}

.hovereffect:hover .overlay {
    opacity:1;
    filter:alpha(opacity=100);
}

.hovereffect:hover h2,.hovereffect:hover a.info {
    opacity:1;
    filter:alpha(opacity=100);
    -ms-transform:translatey(0);
    -webkit-transform:translatey(0);
    transform:translatey(0);
}

.hovereffect:hover a.info {
    -webkit-transition-delay:.2s;
    transition-delay:.2s;
}

.company-client-scroll{
    width: 100%;
    height: auto;
    float: left;
}

.company-client-scroll h5{
    width: 100%;
    height: auto;
    float: left;
}

.company-client-scroll-item{
    width: 100%;
    height: auto;
    float: left;
}

.company-client-scroll-item img{
    display: block;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-latest-project{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 13px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 15px 0px;
}

.company-latest-project h3{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    line-height: 16px;
    color: #1863AB;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins",sans-serif;
    padding: 16px 0px 0px 0px;
    margin: 0px 0px 8px 0px;
}

.company-latest-project h4{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    line-height: 0px;
    color: #666666;
    font-size: 12px;
    font-weight: 400;
    font-family: "Poppins",sans-serif;
    padding: 10px 0px 0px 0px;
    margin: 0px 0px 10px 0px;
}

.company-latest-project h4::before {
    top: 92px;
    left: 67px;
    font-family: FontAwesome;
    content: "\f073";
    margin-right: 5px;
}

.company-latest-project h5{
    width: 100%;
    height: auto;
    float: left;
    text-align: right;
    line-height: 0px;
    color: #1863AB;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins",sans-serif;
    padding: 16px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-latest-project h5 a{
    color: #1863AB;
}

.company-latest-project h5 a:hover{
    color: #ED4B41;
}

.company-latest-project p{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 13px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.hovereffect2 {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect2 .overlay2 {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hovereffect2 img {
  display: block;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.hovereffect2:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.7" /><feFuncG type="linear" slope="0.7" /><feFuncB type="linear" slope="0.7" /></feComponentTransfer></filter></svg>#filter');
  filter: brightness(0.7);
  -webkit-filter: brightness(0.7);
}

.hovereffect2 h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 17px;
  padding: 10px;
  width: 100%;
}

.hovereffect2:hover h2 {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
  transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}

.hovereffect2 a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
}

.hovereffect2 a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect2 .rotate {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 100%;
  height: 100%;
  position: absolute;
}

.hovereffect2 hr {
  width: 50%;
  opacity: 0;
  filter: alpha(opacity=0);
}

.hovereffect2  hr:nth-child(2) {
  -webkit-transform: translate3d(-50%,-50%,0) rotate(0deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate(0deg) scale3d(0,0,1);
}

.hovereffect2  hr:nth-child(3) {
  -webkit-transform: translate3d(-50%,-50%,0) rotate(90deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate(90deg) scale3d(0,0,1);
}

.hovereffect2 h2, .hovereffect2 hr {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
}

.group1, .group2 {
  left: 50%;
  position: absolute;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
  padding: 0px;
}

.group1 {
  top: 40%;
}

.group2 {
  top: 60%;
}

.hovereffect2 p {
  width: 30%;
  text-transform: none;
  font-size: 15px;
  line-height: 2;
}

.hovereffect2 p a {
  color: #fff;
}

.hovereffect2 p a:hover,
.hovereffect2 p a:focus {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.hovereffect2  a i {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  padding: 10px;
  font-size: 20px;
}

.group1 a:first-child i {
  -webkit-transform: translate3d(-60px,-60px,0) rotate(45deg) scale(2);
  transform: translate3d(-60px,-60px,0) rotate(45deg) scale(2);
}

.group1 a:nth-child(2) i {
  -webkit-transform: translate3d(60px,-60px,0) rotate(45deg) scale(2);
  transform: translate3d(60px,-60px,0)  rotate(45deg) scale(2);
}

.group2 a:first-child i {
  -webkit-transform: translate3d(-60px,60px,0) rotate(45deg) scale(2);
  transform: translate3d(-60px,60px,0) rotate(45deg) scale(2);
}

.group2 a:nth-child(2) i {
  -webkit-transform: translate3d(60px,60px,0)  rotate(45deg) scale(2);
  transform: translate3d(60px,60px,0)  rotate(45deg) scale(2);
}

.hovereffect2:hover hr:nth-child(2) {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(-50%,-50%,0) rotate(0deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate(0deg) scale3d(1,1,1);
}

.hovereffect2:hover hr:nth-child(3) {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(-50%,-50%,0) rotate(90deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate(90deg) scale3d(1,1,1);
}

.hovereffect2:hover .group1 i:empty, .hovereffect2:hover .group2 i:empty {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0) rotate(45deg) scale(1);
  opacity: 1;
  filter: alpha(opacity=100);
}

.company-all-upper-div{
    width: 100%;
    height: auto;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-all-upper-div img{
    width: 100%;
    height: auto;
    /*max-height: 220px;*/
    float: left;
    border-radius: 10px;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    padding: 10px 10px 10px 10px;
    margin: 0px 0px 0px 0px;
}

.company-all-upper-div ul{
    width: 100%;
    height: auto;
    float: left;
    border-radius: 10px;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    padding: 10px 10px 10px 10px;
    margin: 0px 0px 0px 0px;
}

.company-all-upper-div li{
    width: 100%;
    height: auto;
    float: left;
    color: #010101;
    font-size: 13px;
    font-weight: 500;
    list-style: none;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 10px 0px;
    margin: 4px 0px 3px 0px;
}

.company-all-upper-div li::before {
    top: 92px;
    left: 67px;
    color: #1863AB;
    font-family: FontAwesome;
    content: "\f0a4";
    margin-right: 5px;
}

.company-all-upper-div li a{
    color: #010101;
}

.company-all-upper-div li a:hover{
    color: #1863AB;
}

.company-all-upper-div-li-active{
    color: #1863AB !important;
    font-weight: 600;
}

.company-all-upper-div-span3{
    padding-right: 16px;
    width: 266px;
}

.company-profile{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-profile h1{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    color: #1863AB;
    font-size: 22px;
    font-weight: 600;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-profile p{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-profile h3{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    color: #1863AB;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-profile ul{
    width: 100%;
    height: auto;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-profile li{
     width: 100%;
    height: auto;
    float: left;
    color: #010101;
    font-size: 14px;
    font-weight: 500;
    list-style: none;
    font-family: "Roboto",sans-serif;
    padding: 7px 0px 0px 0px;
    margin: 0px 0px 6px 0px;
}

.company-profile li::before {
    top: 92px;
    left: 67px;
    font-weight: 600;
    font-family: FontAwesome;
    content: "\f0a9";
    margin-right: 5px;
}

.company-upper-banner-slider{
    width: 100%;
    height: auto;
    float: left;
    border-radius: 10px;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    padding: 10px 10px 10px 10px;
    margin: 0px 0px 0px 0px;
}

.company-client{
    width: 96%;
    height: auto;
    float: left;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.6);
    padding: 5px 5px 5px 5px;
    margin: 10px 0px 0px 0px;
}

.company-client img{
    display: block;
    margin: 0px auto;
    height: 117px;
}

.company-client h3{
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    line-height: 0px;
    color: #1863AB;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins",sans-serif;
    padding: 16px 0px 0px 0px;
    margin: 0px 0px 16px 0px;
}

.company-career{
    width: 96%;
    height: auto;
    float: left;
    border: 1px solid #999;
    border-radius: 10px;
    text-align: justify;
    color: #010101;
    font-size: 12px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 10px 10px 10px 10px;
    margin: 0px 0px 15px 0px;
}

.company-career h3{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    color: #1863AB;
    font-size: 20px;
    font-weight: 500;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 28px;
}

.company-career h4{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    color: #ED4B41;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 4px 0px;
}

.company-career h4::before {
    top: 92px;
    left: 67px;
    font-weight: 600;
    font-family: FontAwesome;
    content: "\f073";
    margin-right: 5px;
}

.company-career p{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 12px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-career-form{
    width: 96% !important;
    border-color: #9e9c9c !important;
    color: #010101 !important;
}

.company-news-details{
    width: 100%;
    height: auto;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 10px 0px 0px 0px;
}

.company-news-details img{
    width: 40%;
    height: auto;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 10px 0px 0px;
}

.company-news-details h4{
    text-align: left;
    color: #1863AB;
    font-size: 20px;
    font-weight: 500;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 4px 0px;
}

.company-news-details h5{
    text-align: left;
    color: #ED4B41;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 4px 0px;
}

.company-news-details p{
    text-align: justify;
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-contact{
    width: 96%;
    height: auto;
    float: left;
    border: 1px solid #999;
    border-radius: 10px;
    text-align: justify;
    color: #010101;
    font-size: 12px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 10px 10px 20px 10px;
    margin: 0px 0px 15px 0px;
}

.company-contact h3{
    width: 100%;
    height: auto;
    float: left;
    text-align: left;
    color: #1863AB;
    font-size: 20px;
    font-weight: 500;
    font-family: "Poppins",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 28px;
}

.company-contact address{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-footer-logo{
    width: 100%;
    height: auto;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.company-footer-logo img{
    width: 100%;
    height: auto;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 0px;
}

.company-footer-logo h2{
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 12px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    line-height: 18px;
}

.company-letest-project2 {
    width: 100%;
    height: auto;
    float: left;
    text-align: justify;
    color: #010101;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto",sans-serif;
    padding: 0px 0px 0px 10px;
    margin: 0px 0px 0px 0px;
}

.company-full-width-banner{
    width: 98%;
    padding-top: 20px;
}

.company-full-width-banner img{
    width: 100%;
    height: 220px;
}

/*.company-update-menu{
    position: absolute;
display: none;
width: 160px;
left: 50%;
top: 38px;
list-style: none;
z-index: 25;
padding: 0;
margin: 0 0 0 -80px;
border: 1px solid #e0e0e0;
border-top: 2px solid #1863AB;
    height: auto !important;
    overflow: hidden;
}*/