.testimonials {
  position: relative;
  margin: 160px auto 180px;
}

.testimo-header {
  color: #7A7C83;
  font-family: Medium;
  line-height: 1.5;
  padding: 0 16px;
  margin: 0 auto 48px;
  text-align: center;
}

.testimo-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.testim-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid #E9E9EA;
  border-radius: 6px;
  transition: ease 0.3s;
}
.testim-nav svg {
  transition: ease 0.3s;
  width: 12px;
  height: 10px;
  fill: #212530;
}
.testim-nav:hover {
  cursor: pointer;
  background-color: #212530;
}
.testim-nav:hover svg {
  fill: white;
}
.testim-nav::after {
  display: none;
}

.testim-prev svg {
  transform: rotate(-180deg);
}

.testimo-slide-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.testimo-text {
  font-size: 32px;
  line-height: 1.5;
  font-family: Semi;
  color: #373B45;
}

.testimo-pic {
  margin: 32px 0 16px;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.testimo-name {
  font-family: Semi;
  line-height: 1.5;
}

.testimo-position {
  line-height: 1.5;
  color: #7A7C83;
}

.testim-pagination {
  width: 200px;
  height: 30px;
  bottom: -64px !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #A6A8AC !important;
}

.swiper-pagination-bullet-active {
  background: #212530 !important;
}

@media (max-width: 900px) {
  .testimo-slide-inner {
    max-width: 600px;
  }
  .testimo-text {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .swiper-testimo {
    padding: 0 16px;
  }
  .testim-nav {
    display: none;
  }
  .testimonials {
    margin: 32px 0 76px;
    padding: 0;
  }
  .testimo-header {
    margin-bottom: 24px;
    text-align: left;
    font-size: 24px;
    color: #212530;
    font-family: Semi;
  }
  .testimo-slide {
    border-radius: 8px;
    border: 1px solid #E9E9EA;
    padding: 20px 16px;
  }
  .testimo-wrap {
    padding: 0;
  }
  .testimo-slide-inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .testimo-pic {
    margin: 0 0 8px;
    width: 46px;
    height: 46px;
  }
  .testimo-name {
    font-size: 14px;
    line-height: 1.4;
  }
  .testimo-position {
    font-size: 14px;
    line-height: 1.4;
  }
  .testimo-text {
    font-size: 16px;
    font-family: Medium;
    line-height: 1.4;
  }
  .testim-pagination {
    left: 50% !important;
    transform: translateX(-50%);
    bottom: -42px !important;
  }
}