.testimonials-section {
    padding-bottom: var(--spacing-med);
    padding-right: 0;
}

.testimonials-title-wrapper {
    padding-bottom: var(--spacing-med);
}

.testimonial-item {
    background-color: var(--color-black);
    background-image: url('../../../images/BG.png');
    background-repeat: repeat;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 48px;
    min-height: 460px;
}

.testimonial-swiper-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--color-white);
    border-radius: 50%;
    border: 1px solid var(--Medium-Grey);
    position: absolute;
    top: calc(50% - 40px);
    left: 62.5%;
    height: 80px;
    width: 80px;
    z-index: 5;
}

.testimonial-swiper-btn {
    position: static;
    height: 16px;
    width: 16px;
    margin-top: 0;
}

.swiper-button-prev.testimonial-swiper-btn::after {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M0.833527 9.9979L6.37144 16.2458L7.30687 15.4167L3.05785 10.6229L19.1687 10.6229V9.3729L3.05785 9.3729L7.30687 4.57913L6.37144 3.75L0.833527 9.9979Z" fill="%23171717"/></svg>');
    height: 100%;
    font-size: 0;
}

.swiper-button-next.testimonial-swiper-btn::after {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.6306 3.75L19.1685 9.9979L13.6306 16.2458L12.6952 15.4167L16.9442 10.6229H0.833344V9.3729H16.9442L12.6952 4.57913L13.6306 3.75Z" fill="%23171717"/></svg>');
    height: 100%;
    font-size: 0;
}

.swiper-circle::after {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10" fill="none"><circle cx="5" cy="5" r="4.5" stroke="%235D5D5D"/><circle cx="5" cy="5" r="1.5" stroke="%235D5D5D"/></svg>');
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
    
    .testimonial-swiper-nav {
        display: none;
    }
}

