.main-content {
    position: relative;
  
    .owl-theme {
      .custom-nav {
        position: absolute;
        top: 20%;
        left: 0;
        right: 0;
  
        .owl-prev,
        .owl-next {
          position: absolute;
          height: 100px;
          color: inherit;
          background: none;
          border: none;
          z-index: 100;
  
          i {
            font-size: 2.5rem;
            color: #cecece;
          }
        }
  
        .owl-prev {
          left: 0;
        }
  
        .owl-next {
          right: 0;
        }
      }
    }
  }