#render .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 130%;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
  }
  
  #render .owl-carousel .owl-nav div {
    outline: none;
    pointer-events: all;
    width: 40px;
  }
  
  #render .owl-carousel .owl-nav div img {
    width: 100%;
  }
  
  #render .owl-carousel .owl-nav div:nth-child(2) {
    transform: rotate(180deg);
  }
  
  #render .owl-carousel .item {
    position: relative;
    opacity: 0.4;
    transition: 0.8s;
    height: 44vw;
    min-height: 300px;
  }
  
  #render .owl-carousel .item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  #render .owl-carousel .owl-stage-outer .owl-stage .owl-item.active {
    opacity: 1;
  }
  
  #render .owl-carousel .owl-stage-outer .owl-stage .owl-item.active .item {
    opacity: 1;
    transition: .4s;
  }

.owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    width: max-content;
    }

.owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    margin: 5px 10px;
    border-radius: 10px;
    background: #FFF;
    }

.owl-dots .owl-dot.active {
    background: #d5ba8c;
    }

.owl-dots .owl-dot :focus {
    outline: none;
    }

    @media only screen and (max-width: 992px) {

      #render .owl-carousel .owl-nav {
        width: 100%;
      }
      #render .owl-carousel .owl-nav div img {
        width: 50%;
      }
  }