.testimonials_new__item {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials_new__position {
  font-size: 16px;
  line-height: 20px;
  color: #03014c;
}
.testimonials_new__author {
  font-size: 24px;
  line-height: 30px;
  position: relative;
  margin-top: 50px;
}
.testimonials_new__author:before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  left: 50%;
  width: 60px;
  margin-left: -30px;
  margin-top: -25px;
  background: #23ce6b;
}
.testimonials_new__image {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials_new__image img {
  max-height: 80px;
  width: auto;
}
.testimonials_new .testimonials__nav {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.testimonials_new .testimonials__nav .testimonials__next_btn,
.testimonials_new .testimonials__nav .testimonials__prev_btn {
  cursor: pointer;
  background: #23ce6b;
  border-radius: 25px;
  height: 45px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.2rem solid #23ce6b;
  transition: 0.3s all;
}
.testimonials_new .testimonials__nav .testimonials__next_btn svg,
.testimonials_new .testimonials__nav .testimonials__prev_btn svg {
  transition: 0.3s all;
}
.testimonials_new .testimonials__nav .testimonials__next_btn svg path,
.testimonials_new .testimonials__nav .testimonials__prev_btn svg path {
  transition: 0.3s all;
}
.testimonials_new .testimonials__nav .testimonials__next_btn:hover,
.testimonials_new .testimonials__nav .testimonials__prev_btn:hover {
  background: transparent;
}
.testimonials_new .testimonials__nav .testimonials__next_btn:hover svg path,
.testimonials_new .testimonials__nav .testimonials__prev_btn:hover svg path {
  stroke: #23ce6b;
}
.testimonials_new .testimonials__nav .testimonials__next_btn {
  margin-left: 15px;
}

.testimonials__box {
  position: relative;
}
.testimonials__slider {
  position: static;
  color: #005285;
}
@media (min-width: 992px) {
  .testimonials__slider.owl-carousel .owl-stage {
    padding: 4rem 0;
  }
}
@media (min-width: 1600px) {
  .testimonials__slider.owl-carousel .owl-stage {
    padding: 5rem 0;
  }
}
@media (min-width: 992px) {
  .testimonials__slider.owl-carousel .owl-dots {
    position: absolute;
    top: calc(100% - 5rem);
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
}
.testimonials__slider.owl-carousel .owl-dots button.owl-dot {
  background-color: #bac9d9;
  border-color: #bac9d9;
}
.testimonials__slider.owl-carousel .owl-dots button.owl-dot:not(:first-of-type) {
  margin-left: 1rem;
}
.testimonials__slider.owl-carousel .owl-dots button.owl-dot.active {
  background-color: #005285;
  border-color: #005285;
}
@media (min-width: 992px) {
  .testimonials__slider.owl-carousel .owl-item {
    transition: all 0.5s ease;
  }
}
@media (min-width: 992px) {
  .testimonials__slider.owl-carousel .owl-item.active .testimonials__item {
    transform: translateX(5rem);
  }
}
@media (min-width: 1200px) {
  .testimonials__slider.owl-carousel .owl-item.active .testimonials__item {
    transform: translateX(10rem);
  }
}
.testimonials__slider.owl-carousel .owl-item.active.center {
  position: relative;
  z-index: 1;
}
.testimonials__slider.owl-carousel .owl-item.active.center .testimonials__item {
  color: #ffffff;
  background-color: #005285;
}
@media (min-width: 992px) {
  .testimonials__slider.owl-carousel .owl-item.active.center .testimonials__item {
    transform: translateY(-5rem);
  }
}
@media (min-width: 1200px) {
  .testimonials__slider.owl-carousel .owl-item.active.center .testimonials__item {
    width: 130%;
    margin-left: -15%;
  }
}
@media (min-width: 1600px) {
  .testimonials__slider.owl-carousel .owl-item.active.center .testimonials__item {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .testimonials__slider.owl-carousel .owl-item.active.center + .owl-item.active .testimonials__item {
    transform: translateX(-5rem);
  }
}
@media (min-width: 1200px) {
  .testimonials__slider.owl-carousel .owl-item.active.center + .owl-item.active .testimonials__item {
    transform: translateX(-10rem);
  }
}
.testimonials__item {
  background-color: #f7f7f7;
  padding: 3rem;
  transition: all 0.5s ease;
}
@media (min-width: 992px) {
  .testimonials__item {
    padding: 4rem;
  }
}
@media (min-width: 1600px) {
  .testimonials__item {
    padding: 5rem;
  }
}
.testimonials__image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.testimonials__image img,
.testimonials__image svg {
  max-width: 30rem;
  max-height: 15rem;
  margin: 0 auto;
}
.testimonials__text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 1199px) {
  .testimonials__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .testimonials__text {
    font-size: 1.4rem;
  }
}
.testimonials__text p:not(:last-child) {
  margin-bottom: 2rem;
}