.testimonial_card p{
    margin: 0 0 25px;
    font-size: 17px;
    line-height: 1.65em;
    color: #4c4c4c;
    text-transform: none;
    font-weight: 300;
}

.testimonials_section{
    padding: 120px 0;
}

.testimonials_section .tSwiper .swiper-slide {
  opacity: 0;
  transition: opacity 1s;
}
.testimonials_section .tSwiper .swiper-slide-active {
  opacity: 1;
}


.testimonials_section .swiper-button-next{
    width: 32px;
    display: flex;
    --swiper-navigation-size: 40px;
    --swiper-navigation-sides-offset: 110px;
    --swiper-navigation-color: #000;
}

.testimonials_section .swiper-button-prev{
    width: 32px;
    display: flex;
    --swiper-navigation-size: 40px;
    --swiper-navigation-sides-offset: 110px;
    --swiper-navigation-color: #000;
}


.testimonials_section .swiper-button-next::after,
.testimonials_section .swiper-button-prev::after {
    display: none !important;
}

.testimonials_section .swiper-button-next svg{
    height: 40px !important;
    width: auto !important;
    stroke: #000;
    fill: none;
    transition: transform 0.3s ease-in-out;
    font-weight: 300;
    &:hover{
        transform: translateX(5px);
    }
}

.testimonials_section .swiper-button-prev svg{
    height: 40px !important;
    width: auto !important;
    stroke: #000;
    fill: none;
    transition: transform 0.3s ease-in-out;
    font-weight: 300;
    &:hover{
        transform: translateX(-5px);
    }
}

.testimonial_card{
    width: 60%;
}

.content_testimonial h6{
    margin: 0 0 6px;
    text-align: center;
    color: #bfa888;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.54em;
    font-family: 'Inconsolata',monospace;
    letter-spacing: .25em;
    font-weight: 500;
    word-wrap: break-word;
}

.content_testimonial h2{
    font-family: "Cormorant Upright",serif;
    text-transform: uppercase;
    color: #000;
    font-size: 52px;
    line-height: 1.05em;
    letter-spacing: .05em;
    font-weight: 500;
    word-wrap: break-word;
    margin: 0 0 28px;
    text-align: center;
}

.testimonial_name{
    font-family: "Cormorant Upright",serif;
    font-size: 19px;
    line-height: 1em;
    letter-spacing: .075em;
    text-transform: uppercase;
    font-weight: 500;
}

.testimonial_job{
    font-size: 15px;
    line-height: 1.73em;
    font-weight: 300;
    color: #404040;
    padding-left: 5px;
    font-family: 'Roboto',sans-serif;
}


@media (max-width: 992px){
    .testimonials_section .swiper-button-next, .testimonials_section .swiper-button-prev{
        display: none;
    }

    .testimonial_card{
        width: 100%;
    }
}