.owl-carousel-container {
    position: relative;
}

.owl-carousel.owl-with-arrows {
    position: relative;
    width: calc(100% - 100px);
    margin-left: 50px;
}

.owl-with-arrows .owl-item {
    display: flex;
    align-items: center;

}

.owl-with-arrows .c-content-testimonial-2 {
    height: 100%;
}

.owl-with-arrows .c-content-testimonial-2 .c-testimonial {
    height: calc(100% - 80px);
    margin: 40px 0 40px 0;
}

.owl-with-arrows .owl-item .item {
    height: 100%;
}

.owl-arrows {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    justify-content: space-between;
    width: 100%;
}

.owl-arrow {
    align-items: center;
    background-color: transparent;
    background-image: url(../../../../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    display: inline-flex;
    height: 50px;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 50px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: none;
}

.owl-arrow--next:hover {
    opacity: 0.8;
    background-color: transparent;
    transform: rotate(180deg) scale(1.1);
}

.owl-arrow--prev:hover {
    opacity: 0.8;
    background-color: transparent;
    transform: scale(1.1);
}

.owl-arrow--next {
    transform: rotate(180deg);
}

.owl-item .item {
    width: 100%;
}

@media (max-width: 768px) {
  .owl-arrow {
    height: 40px;
    width: 40px;
  }

  .owl-arrow::before {
    height: 10px;
    width: 10px;
  }
}
