.our-approach-list li {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .our-approach-list li span {
    font-size: 1rem;
    font-weight: 400;
  }

  .item img {
    height: 360px;
}

.owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-nav .fa-arrow-left, .owl-nav .fa-arrow-right {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid #015fc9;
    color: #015fc9;
    background-color: rgba(255, 255, 255, .7);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
} 

.owl-nav .fa-arrow-left {
    left: 0;
    transition: 0.3s;
}

.owl-nav .fa-arrow-right {
    right: 0;
    transition: 0.3s;
}

.owl-nav .fa-arrow-left:hover,  .owl-nav .fa-arrow-right:hover {
    opacity: 1;
    font-size: larger;
}


@media only screen and (max-width: 480px) {
  .card-img-top{
      height: 280px !important;
  }

  .owl-nav .fa-arrow-left, .owl-nav .fa-arrow-right {
    width: 45px;
    height: 45px;
  }
}