.item {
  .img-box {
    padding: 10px 0px;
  }
  img {
    width: 100%;
  }
}
#owl-demo {
  position: relative;
}

.customNavigation {
  a {
    position: absolute;
    height: 20px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: -2px 1px 10px #bdbdbd;
    top: calc(60% - 20px);
    cursor: pointer;
    z-index: 10;
  }
  .prev {
    left: 140px;
    transform: scaleX(-1);
  }
  .next {
    right: 140px;
  }
  .prev img,
  .next img {
    width: 60px;
    height: 50px;
  }
}
@media (max-width: 576px) {
  .customNavigation {
    .prev {
      left: 30px !important;
    }
    .next {
      right: 30px !important;
    }
    a {
      top: calc(70% - 20px);
    }
  }
}
@media (max-width: 968px) {
  .customNavigation {
    .prev {
      left: 120px;
    }
    .next {
      right: 120px;
    }
  }
}
