/*
---------------------------------------------
services
---------------------------------------------


.services {
    margin-top: -135px;
    position: absolute;
    width: 100%;
  }
  
  .services .item {
    background-image: url(../images/service-item-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    padding: 40px;
  }
  
  .services .item .icon {
    max-width: 60px;
    margin: 0 auto;
  }
  
  .services .item h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
  }
  
  .services .item p {
    color: #fff;
    font-size: 13px;
  }
  
  .services .owl-nav {
    display: inline-block !important;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-25px);
  }
      
  .services .owl-nav .owl-prev{
    margin-right: 10px;
    outline: none;
    position: absolute;
    left: -80px;
  }
  
  .services .owl-nav .owl-prev span,
  .services .owl-nav .owl-next span {
    opacity: 0;
  }
  
  .services .owl-nav .owl-prev:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: #1e1e1e;
    font-size: 25px;
    font-weight: 700;
    content: '\f104';
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
  }
  
  .services .owl-nav .owl-prev {
    opacity: 1;
    transition: all .5s;
  }
  
  .services .owl-nav .owl-prev:hover {
    opacity: 0.9;
  }
  
  .services .owl-nav .owl-next {
    opacity: 1;
    transition: all .5s;
  }
  
  .services .owl-nav .owl-next:hover {
    opacity: 0.9;
  }
  
  .services .owl-nav .owl-next{
    margin-left: 10px;
    outline: none;
    position: absolute;
    right: -85px;
  }
  
  .services .owl-nav .owl-next:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: #1e1e1e;
    font-size: 25px;
    font-weight: 700;
    content: '\f105';
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
  }
  */