
 
.item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left;
  box-sizing: border-box;
}
.item.active {
    display: block;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 45%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: "\2039";
}
.carousel-control .icon-next:before {
  content: "\203a";
}
@media (transform-3d), (-webkit-transform-3d) {
    
    .carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    left: 0;
  }
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
    -o-transition: -o-transform .6s ease-in-out;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel {

            overflow: hidden;
            position: relative;
        }
        
        .carousel-caption {
            border-radius: 5px;
            padding: 20px;
            left: 10%;
            right: auto;
            bottom: 20%;
            text-align: left;
            color: #fff;
        }
         .carousel-indicators {
            bottom: 10px;
        }
        
        .carousel-indicators li {
            border: 2px solid #fff;
            display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000\9;
  background-color: rgba(0,0,0,0);
  border-radius: 10px;
        }
        
        .carousel-indicators .active {
            background-color: #0053b3;
            border-color: #0053b3;
        }
        
        .carousel-caption a{
            color: #fff;
        }
        .carousel-caption .tles {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .carousel-caption p { margin-bottom: 2rem;
        }
        .carousel-caption span {
    padding: 14px 30px;
    background-color: #0053b3;
    border-radius: 23px;
}
        .carousel-control {
            background: none !important;
            width: 60px;
            font-size: 40px;
            opacity: 0.9;
            text-shadow: 0 0 5px rgba(0,0,0,0.8);
        }
        
        .carousel-control:hover {
            opacity: 1;
        }
.about-title{overflow:auto;padding-bottom: 10px;}  
.about-title-l, .about-title-r{
    width: 100%;
    float: left;
}
.product-list-left,.product-list-right{
    float: left;
    width: 50%;
}
.product-list-right{
    float: right;
    padding-left: 5px;
}
.col-md-4.column {
    overflow: auto;
    padding: 14px 10px;
    float: left;
    font-size: 14px;
}
.col-md-4.column h4{
    font-size: 16px;
}
.indnews h3{
    padding: 30px 0 20px 0;
    text-align: center;
    font-weight: 600;
}
.indnews ul{
    padding: 0 0;
}
.indnews .cone{
    text-align: center;
}
.indnews .col-md-4{
    float: left;
    padding: 15px 20px;
}
.indnews .col-md-4 .list-news{
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);
    transition: all .25s;
}

.indnews .col-md-4 .list-news:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .15);
}

.indnews .col-md-4 .list-news-left{
    float: none;
    margin: 0 0;
    margin-top: 0px !important;
    padding: 0;
}
.indnews .col-md-4 .list-news-right{
    padding: 10px 10px;
}
.indnews .col-md-4 .list-news-right span{
    font-size: 15px;
}
.indnews .col-md-4 h4{
    text-align: left;
    font-size: 1.2rem;
}
.indnews .col-md-4 .list-news-left img{
    width: 100%;
    border: 0;
}
.indserv{
    background: #f8f8f8;
}
.indserv .container{
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: auto;
}
.indserv .indserv-left, .indserv .indserv-right{
    width: 50%;
    float: left;
    padding: 0px 8px;
}
.indserv .indserv-left-left, .indserv .indserv-left-right{
    width: 50%;
    float: left;
    padding: 0 5px;
}

.indserv .indserv-right p{
        font-size: 16px;
    font-weight: 500;
        padding-top: 10px;
}
.indserv .indserv-right .indseget {
    padding: 13px 30px;
    background-color: #0053b3;
    border-radius: 28px;
    color: #fff;
}

@media (max-width: 1000px) {.item img {height: 280px;}
.carousel-indicators li {border: 1px solid #fff;width: 8px;height: 8px;}
    
}
@media (max-width: 768px) {
    .carousel-caption {bottom: 5%;padding: 10px;}
    .carousel-caption h4 {font-size: 18px;}
    .carousel-caption p {font-size: 12px;display: none;}
    .indnews .col-md-4 {padding: 10px 10px;}
    .item img {height: 200px;}
    .carousel-indicators li {border: 1px solid #fff;width: 5px;height: 5px;}
    .indserv .indserv-left, .indserv .indserv-right{width: 100%;}
    .indserv .indserv-right p{font-size: 15px;}
    .product-list-left, .product-list-right {width: 100%;}
    .col-md-4.column h4 {padding-top: 20px;}
    .col-md-4.column{padding: 5px 5px;}
}
    