/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; 
    margin-left: 70px;
    margin-right: 70px;
  }
    .owl-theme .owl-dots .owl-dot span {
      width: 12px;
      height: 12px;
      margin: 5px 7px;
      background: #004353;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 50%; }
    .owl-theme .owl-dots .owl-dot.active span{
      background: #1ca8ca;
      /*border: 2px solid #1ca8ca;*/
       }

       /*custom*/
       .owl-dots .owl-dot span{
          position: relative;
       }
       .owl-dots .owl-dot span:before{
        position: absolute;
        top: 20px;
        width: 110px;
        color: #004353;
        font-family: 'Helvetica LT Std';
        font-size: 12px;
        left: -50px;
       }
       .owl-dots .owl-dot:nth-child(1) span:before{
        content: 'Solution';
       }
       .owl-dots .owl-dot:nth-child(2) span:before{
        content: 'Maintenance ';
       }
       .owl-dots .owl-dot:nth-child(3) span:before{
        content: 'Fleet Tracking ';
       }
       .owl-dots .owl-dot:nth-child(4) span:before{
        content: 'Fleet Analytics  ';
       }

       .owl-dots .owl-dot.active span:before{
        color:#1ca8ca;
        /*font-weight: bold;*/
        top: 18px;
       }


       @media screen and (max-width:767px){
        .owl-theme .owl-dots .owl-dot{
          margin-right: 50px;
          margin-left: 50px;
        }
        .owl-dots .owl-dot span:before{
          font-size: 12px;

        }
       }
       @media screen and (max-width:575px){
        .owl-theme .owl-dots .owl-dot{
          margin-right: 10px;
          margin-left: 10px;
        }
        .owl-theme .owl-dots .owl-dot span{
          width: 8px;
          height: 8px;

        }
        /*.owl-dots .owl-dot span:before{
          font-size: 12px;
        }*/
       }
       @media screen and (max-width:575px){
          .owl-dots .owl-dot span:before{
              display: none;
          }
          .owl-theme .owl-nav.disabled + .owl-dots{
            position: relative;
            top: 30px;
          }
        }
        


        .carousel_section .owl-carousel .owl-dots{
          position: absolute;
          left: 0;
          right: 0;
          bottom: -40px;
        }
@media screen and (max-width:991px){
        .carousel_section .owl-carousel .owl-dots{
          /*bottom: -15px!important;*/
          position: unset;
        }
       }
