.testimonial-section {
  position: relative;
  z-index: 9;
  background-color: #1e2023;
}
.testimonial-section .arrow-shape {
  position: absolute;
  top: 65px;
  left: 0;
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.testimonial-section .building-shape {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  z-index: -1;
}
.testimonial-section .testimonial-image {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .testimonial-section .testimonial-image {
    max-width: 600px;
  }
  .testimonial-section .testimonial-image img {
    object-fit: cover;
  }
}
@media (max-width: 1399px) {
  .testimonial-section .testimonial-image {
    max-width: 500px;
  }
}
@media (max-width: 1199px) {
  .testimonial-section .testimonial-image {
    position: static;
    margin-bottom: 40px;
    max-width: none;
    height: 700px;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-image {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .testimonial-image {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .testimonial-section .testimonial-image {
    height: 400px;
  }
}
.testimonial-section .testimonial-image img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper .testimonial-content .section-title {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
  padding-bottom: 25px;
}
.testimonial-wrapper .testimonial-content .testi-content h4 {
  color: var(--white);
  font-weight: 600;
  line-height: 175%;
  font-style: italic;
  margin-top: 15px;
}
.testimonial-wrapper .testimonial-content .client-img-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-content .client-img-items {
    justify-content: center;
    margin-top: 30px;
  }
}
.testimonial-wrapper .testimonial-content .client-img-items .client-image-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-wrapper .testimonial-content .client-img-items .array-button {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-content .client-img-items .array-button {
    display: none;
  }
}
.testimonial-wrapper
  .testimonial-content
  .client-img-items
  .array-button
  .array-next,
.testimonial-wrapper
  .testimonial-content
  .client-img-items
  .array-button
  .array-prev {
  background-color: transparent;
  box-shadow: none;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  font-size: 20px;
}
.testimonial-wrapper
  .testimonial-content
  .client-img-items
  .array-button
  .array-prev {
  color: var(--white);
}
.testimonial-wrapper
  .testimonial-content
  .client-img-items
  .array-button
  .array-next,
.testimonial-wrapper
  .testimonial-content
  .client-img-items
  .array-button
  .array-prev:hover {
  color: var(--theme);
}
.testimonial-card-items {
  padding: 40px;
  border-top: 3px solid var(--theme);
  background: var(--white);
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  margin: 30px 5px 40px;
}
@media (max-width: 575px) {
  .testimonial-card-items {
    padding: 30px;
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
}
.testimonial-card-items .client-info-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .testimonial-card-items .client-info-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.testimonial-card-items .client-info-items .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-card-items .client-info-items .client-info .content h4 {
  margin-bottom: 5px;
}
.testimonial-card-items .client-info-items .client-info .content .star {
  color: var(--theme);
}
.testimonial-card-items .shape-img {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
}
.testimonial-card-items.style-2 {
  border-top: none;
}
.testimonial-section-2 {
  margin-bottom: -40px;
  position: relative;
}
.testimonial-section-2:hover .array-button {
  opacity: 1;
  visibility: visible;
}
.testimonial-section-2 .array-button {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1899px) {
  .testimonial-section-2 .array-button {
    display: none;
  }
}
.testimonial-section-2 .array-button .array-prev {
  border: 1px solid var(--theme);
  color: var(--theme);
  position: absolute;
  top: 58%;
  inset-inline-start: 10%;
  transform: translateY(-50%);
}
.testimonial-section-2 .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-section-2 .array-button .array-next {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
  position: absolute;
  top: 58%;
  inset-inline-end: 10%;
  transform: translateY(-50%);
}
.testimonial-section-2 .array-button .array-next:hover {
  background-color: var(--header);
}
