/*-- testimonial 1 -- */
/*-- Base: mixin & variable  -- */
.orea-testimonial-wrapper-body {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 10px;
  padding-left: 10px;
}

.orea-testimonial-section {
  overflow-x: clip;
  position: relative;
  padding: 0px 10px;
}
.orea-testimonial-section.navigation-hidden .orea-swiper-navigation,
.orea-testimonial-section.navigation-hidden .swiper-button-prev,
.orea-testimonial-section.navigation-hidden .swiper-button-next {
  display: none;
}
.orea-testimonial-section.pagination-hidden .swiper-pagination,
.orea-testimonial-section.pagination-hidden .orea-swiper-pagination {
  display: none;
}

/* Testimonial navigation style 1 & 2*/
.orea-testimonial-section.style-1,
.orea-testimonial-section.style-2 {
  /* Swiper nav and pagination wrapper */
}
.orea-testimonial-section.style-1 .orea-swiper-navigation,
.orea-testimonial-section.style-2 .orea-swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.orea-testimonial-section.style-1 .orea-swiper-navigation .swiper-button-prev,
.orea-testimonial-section.style-1 .orea-swiper-navigation .swiper-button-next,
.orea-testimonial-section.style-2 .orea-swiper-navigation .swiper-button-prev,
.orea-testimonial-section.style-2 .orea-swiper-navigation .swiper-button-next {
  position: static;
  top: inherit;
  left: inherit;
  right: inherit;
  margin: 0;
  transition: all 0.3s ease;
  height: auto;
}
.orea-testimonial-section.style-1 .orea-swiper-navigation .swiper-button-prev:after,
.orea-testimonial-section.style-1 .orea-swiper-navigation .swiper-button-next:after,
.orea-testimonial-section.style-2 .orea-swiper-navigation .swiper-button-prev:after,
.orea-testimonial-section.style-2 .orea-swiper-navigation .swiper-button-next:after {
  font-family: "flaticon_combined";
  color: #2a1a55;
  font-size: 28px;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-1 .orea-swiper-navigation .swiper-button-prev:after,
.orea-testimonial-section.style-2 .orea-swiper-navigation .swiper-button-prev:after {
  content: "\f11d";
}
.orea-testimonial-section.style-1 .orea-swiper-navigation .swiper-button-next:after,
.orea-testimonial-section.style-2 .orea-swiper-navigation .swiper-button-next:after {
  content: "\f11c";
}
.orea-testimonial-section.style-1 .orea-swiper-pagination .swiper-pagination,
.orea-testimonial-section.style-2 .orea-swiper-pagination .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: static;
}
.orea-testimonial-section.style-1 .orea-swiper-pagination .swiper-pagination .swiper-pagination-bullet,
.orea-testimonial-section.style-2 .orea-swiper-pagination .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #ffc107;
  opacity: 1;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-1 .orea-swiper-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.orea-testimonial-section.style-2 .orea-swiper-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffc107;
}
.orea-testimonial-section.style-1 .orea-swiper-nav-wrapper,
.orea-testimonial-section.style-2 .orea-swiper-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

/* Testimonial style 1*/
.orea-testimonial-section.style-1 {
  position: relative;
}
.orea-testimonial-section.style-1 .container {
  max-width: 1320px;
}
.orea-testimonial-section.style-1 .testimonial-main-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
}
.orea-testimonial-section.style-1 .testimonial-item {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.orea-testimonial-section.style-1 .testimonial-item h3 {
  font-size: 32px;
  font-weight: 600;
}
.orea-testimonial-section.style-1 .testimonial-item p {
  font-size: 22px;
}
.orea-testimonial-section.style-1 .testimonial-item .client {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.orea-testimonial-section.style-1 .testimonial-item .client .client-image {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  overflow: hidden;
}
.orea-testimonial-section.style-1 .testimonial-item .client .client-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-1 .testimonial-item .client .client-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.orea-testimonial-section.style-1 .testimonial-item .client .client-details p {
  font-size: 14px;
}
.orea-testimonial-section.style-1.center .testimonial-item {
  align-items: center;
}
.orea-testimonial-section.style-1.center .testimonial-item h3,
.orea-testimonial-section.style-1.center .testimonial-item p {
  text-align: center;
}
.orea-testimonial-section.style-1.right .testimonial-item {
  align-items: flex-end;
}
.orea-testimonial-section.style-1.right .testimonial-item h3,
.orea-testimonial-section.style-1.right .testimonial-item p {
  text-align: end;
}
.orea-testimonial-section.style-1.right .testimonial-item .client .client-image {
  order: 2;
}
.orea-testimonial-section.style-1.right .testimonial-item .client .client-details {
  text-align: end;
}

/* Testimonial navigation style 1*/
.orea-testimonial-section.style-1 .orea-swiper-pagination .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.orea-testimonial-section.style-1 .orea-swiper-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #223035;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Testimonial slider style-1*/
  .orea-testimonial-section.style-1 .row {
    row-gap: 30px;
  }
  .orea-testimonial-section.style-1 .testimonial-item {
    gap: 20px;
  }
  .orea-testimonial-section.style-1 .testimonial-item h3 {
    font-size: 28px;
  }
  .orea-testimonial-section.style-1 .testimonial-item p {
    font-size: 20px;
  }
  .orea-testimonial-section.style-1 .testimonial-item .client {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* Testimonial slider style-1*/
  .orea-testimonial-section.style-1 .row {
    row-gap: 30px;
  }
  .orea-testimonial-section.style-1 .testimonial-item {
    gap: 20px;
  }
  .orea-testimonial-section.style-1 .testimonial-item h3 {
    font-size: 24px;
  }
  .orea-testimonial-section.style-1 .testimonial-item p {
    font-size: 18px;
  }
  .orea-testimonial-section.style-1 .testimonial-item .client {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-1*/
  .orea-testimonial-section.style-1 .row {
    row-gap: 30px;
  }
  .orea-testimonial-section.style-1 .testimonial-item {
    gap: 20px;
  }
  .orea-testimonial-section.style-1 .testimonial-item h3 {
    font-size: 24px;
  }
  .orea-testimonial-section.style-1 .testimonial-item p {
    font-size: 17px;
  }
  .orea-testimonial-section.style-1 .testimonial-item .client {
    margin-top: 10px;
  }
}
/*-- testimonial 2 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 2*/
.orea-testimonial-section.style-2 .container {
  max-width: 100%;
  padding: 0;
}
.orea-testimonial-section.style-2 .swiper-slide {
  height: auto;
}
.orea-testimonial-section.style-2 .testimonial-slider-item {
  position: relative;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 30px;
}
.orea-testimonial-section.style-2 .testimonial-slider-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.4745098039);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.6s ease;
}
.orea-testimonial-section.style-2 .testimonial-slider-item img.bg-image {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-2 .testimonial-slider-item .client {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: 100%;
}
.orea-testimonial-section.style-2 .testimonial-slider-item .client .client-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.orea-testimonial-section.style-2 .testimonial-slider-item .client .client-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-2 .testimonial-slider-item .client .client-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}
.orea-testimonial-section.style-2 .testimonial-slider-item .client .client-details h5 {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.orea-testimonial-section.style-2 .testimonial-slider-item .comment {
  position: relative;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-2 .testimonial-slider-item .comment p {
  margin-top: 30px;
  color: #ffffff;
  line-height: 1.8em;
}
.orea-testimonial-section.style-2 .testimonial-slider-item:hover:before {
  background: #ffc107;
}
.orea-testimonial-section.style-2 .testimonial-slider-item:hover .comment {
  opacity: 1;
  visibility: visible;
}
.orea-testimonial-section.style-2.center .testimonial-slider-item .comment p {
  text-align: center;
}
.orea-testimonial-section.style-2.center .testimonial-slider-item .client {
  justify-content: center;
}
.orea-testimonial-section.style-2.right .testimonial-slider-item .comment p {
  text-align: right;
}
.orea-testimonial-section.style-2.right .testimonial-slider-item .client {
  justify-content: right;
}

/* Testimonial navigation style 2*/
.orea-testimonial-section.style-2 {
  /* pagination */
}
.orea-testimonial-section.style-2 .orea-swiper-nav-wrapper {
  margin-top: 50px;
  gap: 40px;
}
.orea-testimonial-section.style-2 .orea-swiper-nav-wrapper.center {
  justify-content: center;
}

@media only screen and (min-width: 1500px) and (max-width: 1799px) {
  .orea-testimonial-section.style-2 .testimonial-slider-item .comment p {
    line-height: 1.6em;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Testimonial slider style-2*/
  .orea-testimonial-section.style-2 .testimonial-slider-item .comment p {
    margin-top: 20px;
    line-height: 1.6em;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* Testimonial slider style-2*/
  .orea-testimonial-section.style-2 .testimonial-slider-item {
    padding: 20px;
    border-radius: 16px;
  }
  .orea-testimonial-section.style-2 .testimonial-slider-item .comment p {
    line-height: 1.6em;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-2*/
  .orea-testimonial-section.style-2 .testimonial-slider-item {
    padding: 25px;
    border-radius: 16px;
  }
  .orea-testimonial-section.style-2 .testimonial-slider-item .comment p {
    line-height: 1.6em;
  }
}
/*-- testimonial 3 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 3*/
.orea-testimonial-section.style-3 .row {
  row-gap: 30px;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-image {
  overflow: hidden;
  height: 620px;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-image a {
  width: 100%;
  height: 100%;
  display: block;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-image a img {
  width: 100%;
  height: 100%;
  transform: translateX(0) translateZ(0) scale(1.1);
  transition: 1.2s;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-image:hover a img {
  transform: translateX(-15px) translateZ(0) scale(1.1);
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description {
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  padding-left: 120px;
  padding-right: 60px;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text p {
  margin-top: 5px;
  line-height: 2rem;
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author {
  margin-top: 80px;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5 {
  text-align: right;
  padding-right: 30px;
  position: relative;
  font-size: 16px;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5:before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 220px;
  max-width: 40%;
  height: 1px;
  background-color: #ffc107;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5 span:first-child {
  font-weight: 400;
}
.orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5 span:last-child {
  font-weight: 300;
}
.orea-testimonial-section.style-3.flip .row > .col-md-6:first-child {
  order: 2;
}
.orea-testimonial-section.style-3.flip .orea-testimonial-main .testimonial-item .testimonial-description {
  padding-right: 120px;
  padding-left: 20px;
}
.orea-testimonial-section.style-3.image-top .row {
  flex-direction: column;
}
.orea-testimonial-section.style-3.image-top .row .col-md-6 {
  margin: 0 auto;
}
.orea-testimonial-section.style-3.image-top .orea-testimonial-main .testimonial-item .testimonial-image {
  max-width: 600px;
  margin: 0 auto;
}
.orea-testimonial-section.style-3.image-top .orea-testimonial-main .testimonial-item .testimonial-description {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 !important;
}
.orea-testimonial-section.style-3.image-top.image-small .orea-testimonial-main .testimonial-item .testimonial-image {
  max-width: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* Testimonial navigation style 3*/
.orea-testimonial-section.style-3 .orea-swiper-nav-wrapper {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}
.orea-testimonial-section.style-3 .swiper-pagination {
  position: relative;
  bottom: 0;
  top: 0;
  width: auto;
}
.orea-testimonial-section.style-3 .swiper-pagination .swiper-pagination-bullet {
  background-color: #ffc107;
  width: 12px;
  height: 12px;
  opacity: 0.6;
  margin: 0px 15px;
  transform: scale(1);
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-3 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffc107;
  opacity: 1;
  transform: scale(1.2);
}
.orea-testimonial-section.style-3 .orea-swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.orea-testimonial-section.style-3 .orea-swiper-navigation .swiper-button-prev,
.orea-testimonial-section.style-3 .orea-swiper-navigation .swiper-button-next {
  position: relative;
  bottom: 0;
  left: 0;
  margin: 0;
}
.orea-testimonial-section.style-3 .orea-swiper-navigation .swiper-button-prev:after,
.orea-testimonial-section.style-3 .orea-swiper-navigation .swiper-button-next:after {
  font-size: 20px;
  color: #ffc107;
}

@media only screen and (max-width: 1199px) {
  /* Testimonial slider style-3*/
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description {
    padding-left: 40px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author {
    margin-top: 60px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5:before {
    width: 35%;
  }
  .orea-testimonial-section.style-3.flip .orea-testimonial-main .testimonial-item .testimonial-description {
    padding-right: 40px;
    padding-left: 0px;
  }
}
@media only screen and (max-width: 991px) {
  /* Testimonial slider style-3*/
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-image {
    height: 500px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description {
    padding-left: 20px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author {
    margin-top: 60px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5 {
    padding-right: 0;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5:before {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  /* Testimonial slider style-3*/
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-image {
    height: 400px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description {
    padding: 0px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author {
    margin-top: 25px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5 {
    padding-right: 30px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5:before {
    width: 45%;
  }
  .orea-testimonial-section.style-3.flip .row > .col-md-6:last-child {
    order: 2;
  }
  .orea-testimonial-section.style-3.flip .row > .col-md-6:first-child {
    order: 1;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-3*/
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-image {
    height: 400px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description {
    padding: 0px;
    margin-top: 20px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text p {
    font-size: 20px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author {
    margin-top: 25px;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5 {
    padding-right: 0;
  }
  .orea-testimonial-section.style-3 .orea-testimonial-main .testimonial-item .testimonial-description .review-text .author h5:before {
    width: 25%;
  }
}
/*-- testimonial 4 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial navigation style 4 & 5*/
.orea-testimonial-section.style-4 .orea-swiper-nav-wrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
.orea-testimonial-section.style-4 .orea-swiper-navigation {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 40px;
}
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-next,
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-prev {
  color: #2a1a55;
  width: 54px;
  height: 54px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #2a1a55;
  position: relative;
  top: inherit;
  left: inherit;
  margin: 0;
  bottom: 0;
  right: inherit;
  overflow: hidden;
}
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-next:after,
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-prev:after {
  font-family: "flaticon_combined";
  font-size: 22px;
}
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-next:before,
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-prev:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #2a1a55;
  transition: all 0.6s ease;
  z-index: -1;
}
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-next:hover,
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-prev:hover {
  color: #ffffff !important;
}
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-next:hover:before,
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-prev:hover:before {
  width: 100%;
}
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-prev:after {
  content: "\f11d";
}
.orea-testimonial-section.style-4 .orea-swiper-navigation .swiper-button-next:after {
  content: "\f11c";
}
.orea-testimonial-section.style-4 .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  margin: 0;
  width: auto;
  color: #272a2f;
}
.orea-testimonial-section.style-4 .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 10px;
  border-radius: 5px;
  background-color: #2a1a55;
  transition: 0.3s;
  margin: 0px 5px;
}
.orea-testimonial-section.style-4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
}
.orea-testimonial-section.style-4 .swiper-pagination span {
  display: inline-block;
  line-height: 1em;
  transition: all 0.3s ease;
  color: #272a2f;
}
.orea-testimonial-section.style-4 .swiper-pagination span.swiper-pagination-current {
  font-size: 48px;
}

/* Testimonial style 4*/
.orea-testimonial-section.style-4 .testimonial-main-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}
.orea-testimonial-section.style-4 .orea-testimonial-item {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 40px;
  border-radius: 16px;
  overflow: visible;
  border: 1px solid #a09eab;
  padding: 35px 0px;
  overflow: visible;
  height: 100%;
  margin-left: 45px;
  background-color: #fbfbff;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-image {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  width: 90px;
  height: 90px;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .avatar-main {
  margin-left: -90px;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .avatar-main .avatar-details {
  display: none;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description {
  display: flex;
  flex-direction: column;
  width: 75%;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description > p {
  color: #2a1a55;
  line-height: 1.4em;
  font-weight: 500;
  font-size: 20px;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description .avatar-details {
  position: relative;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description .avatar-details:before {
  content: "";
  background-image: url(../../assets/shape/testimonial/shape-08.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 0%;
  right: 0%;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description .avatar-details h5 {
  color: #2a1a55;
  font-size: 14px;
  font-weight: 500;
}
.orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description .avatar-details p {
  color: #272a2f;
}
.orea-testimonial-section.style-4 .swiper-slide {
  height: auto;
}
.orea-testimonial-section.style-4 .swiper-slide-active .orea-testimonial-item {
  margin: 0px 45px;
}
.orea-testimonial-section.style-4.image-top .testimonial-main-wrapper {
  margin-top: 40px;
}
.orea-testimonial-section.style-4.image-top .orea-testimonial-item {
  margin-left: 0 !important;
  flex-direction: column;
  padding: 0px 35px 35px 35px;
}
.orea-testimonial-section.style-4.image-top .orea-testimonial-item .avatar-main {
  margin-left: 0;
}
.orea-testimonial-section.style-4.image-top .orea-testimonial-item .testimonial-image {
  margin-top: -55px;
}
.orea-testimonial-section.style-4.image-top .orea-testimonial-item .testimonial-description {
  width: 100%;
}
.orea-testimonial-section.style-4.image-top-center .testimonial-main-wrapper {
  margin-top: 40px;
}
.orea-testimonial-section.style-4.image-top-center .orea-testimonial-item {
  margin-left: 0 !important;
  flex-direction: column;
  padding: 0px 35px 35px 35px;
  text-align: center;
}
.orea-testimonial-section.style-4.image-top-center .orea-testimonial-item .avatar-main {
  margin-left: auto;
  margin-right: auto;
}
.orea-testimonial-section.style-4.image-top-center .orea-testimonial-item .testimonial-image {
  margin-top: -55px;
}
.orea-testimonial-section.style-4.image-top-center .orea-testimonial-item .testimonial-description {
  width: 100%;
}
.orea-testimonial-section.style-4.image-top-center .orea-testimonial-item .testimonial-description .avatar-details {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.orea-testimonial-section.style-4.image-top-center .orea-testimonial-item .testimonial-description .avatar-details:before {
  display: none;
}
.orea-testimonial-section.style-4.image-inside-left .orea-testimonial-item {
  margin-left: 0 !important;
  flex-direction: column;
  padding: 35px 35px !important;
}
.orea-testimonial-section.style-4.image-inside-left .orea-testimonial-item .avatar-main {
  margin-left: 0;
}
.orea-testimonial-section.style-4.image-inside-left .orea-testimonial-item .testimonial-image {
  margin-top: 0 !important;
}
.orea-testimonial-section.style-4.image-inside-left .orea-testimonial-item .testimonial-description {
  width: 100%;
}
.orea-testimonial-section.style-4.image-inside-center .orea-testimonial-item {
  margin-left: 0 !important;
  flex-direction: column;
  padding: 35px 35px;
}
.orea-testimonial-section.style-4.image-inside-center .orea-testimonial-item .avatar-main {
  margin-left: auto !important;
  margin-right: auto;
}
.orea-testimonial-section.style-4.image-inside-center .orea-testimonial-item .testimonial-image {
  margin-top: 0;
}
.orea-testimonial-section.style-4.image-inside-center .orea-testimonial-item .testimonial-description {
  width: 100%;
  text-align: center;
}
.orea-testimonial-section.style-4.quote-none .orea-testimonial-item .testimonial-description .avatar-details:before {
  display: none;
}
.orea-testimonial-section.style-4.image-inside-left.top-heading .orea-testimonial-item, .orea-testimonial-section.style-4.image-inside-center.top-heading .orea-testimonial-item {
  gap: 30px;
}
.orea-testimonial-section.style-4.image-inside-left.top-heading .orea-testimonial-item .avatar-main, .orea-testimonial-section.style-4.image-inside-center.top-heading .orea-testimonial-item .avatar-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.orea-testimonial-section.style-4.image-inside-left.top-heading .orea-testimonial-item .avatar-main .avatar-details, .orea-testimonial-section.style-4.image-inside-center.top-heading .orea-testimonial-item .avatar-main .avatar-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}
.orea-testimonial-section.style-4.image-inside-left.top-heading .orea-testimonial-item .avatar-main .avatar-details h5,
.orea-testimonial-section.style-4.image-inside-left.top-heading .orea-testimonial-item .avatar-main .avatar-details p, .orea-testimonial-section.style-4.image-inside-center.top-heading .orea-testimonial-item .avatar-main .avatar-details h5,
.orea-testimonial-section.style-4.image-inside-center.top-heading .orea-testimonial-item .avatar-main .avatar-details p {
  font-size: 14px;
}
.orea-testimonial-section.style-4.image-inside-left.top-heading .orea-testimonial-item .testimonial-description, .orea-testimonial-section.style-4.image-inside-center.top-heading .orea-testimonial-item .testimonial-description {
  padding-top: 30px;
  border-top: 1px solid #a09eab;
}
.orea-testimonial-section.style-4.image-inside-left.top-heading .orea-testimonial-item .testimonial-description .avatar-details, .orea-testimonial-section.style-4.image-inside-center.top-heading .orea-testimonial-item .testimonial-description .avatar-details {
  display: none !important;
}
.orea-testimonial-section.style-4.image-inside-left.border-less, .orea-testimonial-section.style-4.image-inside-center.border-less {
  flex-direction: column;
}
.orea-testimonial-section.style-4.image-inside-left.border-less .orea-testimonial-item, .orea-testimonial-section.style-4.image-inside-center.border-less .orea-testimonial-item {
  padding: 0;
  border: none;
}
.orea-testimonial-section.style-4.image-inside-left.border-less .orea-testimonial-item .testimonial-description, .orea-testimonial-section.style-4.image-inside-center.border-less .orea-testimonial-item .testimonial-description {
  border: none !important;
  padding: 0 !important;
}
.orea-testimonial-section.style-4.image-inside-left.border-less .orea-testimonial-item .testimonial-description .avatar-details, .orea-testimonial-section.style-4.image-inside-center.border-less .orea-testimonial-item .testimonial-description .avatar-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.orea-testimonial-section.style-4.image-inside-left.border-less .orea-testimonial-item .testimonial-description .avatar-details:before, .orea-testimonial-section.style-4.image-inside-center.border-less .orea-testimonial-item .testimonial-description .avatar-details:before {
  display: none;
}
.orea-testimonial-section.style-4.image-inside-left.border-less .orea-testimonial-item .testimonial-description .avatar-details h5, .orea-testimonial-section.style-4.image-inside-center.border-less .orea-testimonial-item .testimonial-description .avatar-details h5 {
  margin: 0;
  font-size: 18px;
}
.orea-testimonial-section.style-4.image-inside-left.flip .orea-testimonial-item .avatar-main, .orea-testimonial-section.style-4.image-inside-center.flip .orea-testimonial-item .avatar-main {
  order: 2;
}
.orea-testimonial-section.style-4.image-inside-left.flip .orea-testimonial-item .testimonial-description, .orea-testimonial-section.style-4.image-inside-center.flip .orea-testimonial-item .testimonial-description {
  padding-top: 0;
  border-top: none;
  padding-bottom: 30px;
  border-bottom: 1px solid #a09eab;
}
.orea-testimonial-section.style-4.image-inside-left.border-left .orea-testimonial-item, .orea-testimonial-section.style-4.image-inside-center.border-left .orea-testimonial-item {
  border: none;
  border-left: 1px solid;
  border-image-source: linear-gradient(180deg, #002dff 0%, rgba(0, 45, 255, 0) 100%);
  border-image-slice: 1;
  padding: 0 35px !important;
}
.orea-testimonial-section.style-4.image-inside-left.client-right .orea-testimonial-item .avatar-main, .orea-testimonial-section.style-4.image-inside-center.client-right .orea-testimonial-item .avatar-main {
  padding-left: 30px;
  border-left: 1px solid #a09eab;
  margin-left: auto;
  margin-right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Testimonial slider style-4*/
  .orea-testimonial-section.style-4 .orea-testimonial-item {
    gap: 20px;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description {
    padding-right: 20px;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description .avatar-details:before {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 991px) {
  /* Testimonial slider style-4*/
  .orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description > p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Testimonial slider style-4*/
  .orea-testimonial-section.style-4 .orea-testimonial-item {
    gap: 20px;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .avatar-main {
    margin-left: -65px;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description {
    padding-right: 0px;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description .avatar-details:before {
    width: 80px;
    height: 80px;
  }
  .orea-testimonial-section.style-4 .swiper-slide-active .orea-testimonial-item {
    margin: 0 0 0 45px;
  }
}
@media only screen and (max-width: 767px) {
  /* Testimonial slider style-4*/
  .orea-testimonial-section.style-4 .swiper-slide-active .orea-testimonial-item {
    margin: 0px 0px 0px 45px;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-4*/
  .orea-testimonial-section.style-4 .orea-testimonial-item {
    padding: 20px;
    margin-left: 0 !important;
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .avatar-main {
    margin-left: 0;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-image {
    width: 60px;
    height: 60px;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description {
    padding-right: 0;
    width: 100%;
  }
  .orea-testimonial-section.style-4 .orea-testimonial-item .testimonial-description .avatar-details:before {
    width: 60px;
    height: 60px;
  }
  .orea-testimonial-section.style-4.image-top .orea-testimonial-item, .orea-testimonial-section.style-4.image-inside-left .orea-testimonial-item {
    padding: 20px !important;
  }
  .orea-testimonial-section.style-4.image-top-center .orea-testimonial-item {
    padding: 20px;
  }
  .orea-testimonial-section.style-4.image-top-center .orea-testimonial-item .avatar-main {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .orea-testimonial-section.style-4.image-inside-left .orea-testimonial-item, .orea-testimonial-section.style-4.image-inside-center .orea-testimonial-item {
    padding: 20px;
  }
}
/*-- testimonial 5 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 5*/
.orea-testimonial-section.style-5 .orea-testimonial-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}
.orea-testimonial-section.style-5 .testimonial-top {
  margin-bottom: 80px;
}
.orea-testimonial-section.style-5 .testimonial-slider-main {
  max-width: 950px;
}
.orea-testimonial-section.style-5 .orea-testimonial-item {
  background-color: #fbfbff;
  padding: 45px 60px;
  padding-right: 0;
}
.orea-testimonial-section.style-5 .orea-testimonial-item .client-details {
  padding-right: 40px;
  border-right: 1px solid #a09eab;
  text-align: center;
}
.orea-testimonial-section.style-5 .orea-testimonial-item .client-details .client-image {
  height: 280px;
  max-width: 230px;
  overflow: hidden;
  border-radius: 152px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.orea-testimonial-section.style-5 .orea-testimonial-item .client-details .client-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-5 .orea-testimonial-item .client-details h5 {
  font-size: 18px;
}
.orea-testimonial-section.style-5 .orea-testimonial-item .client-details p {
  font-size: 14px;
}
.orea-testimonial-section.style-5 .orea-testimonial-item .client-review {
  padding: 30px 0px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orea-testimonial-section.style-5 .orea-testimonial-item .client-review p {
  padding: 0px 50px 0px 20px;
  position: relative;
  z-index: 2;
  line-height: 1.3em;
  color: #272a2f;
  font-weight: 500;
  font-size: 32px;
}
.orea-testimonial-section.style-5 .orea-testimonial-item .client-review .quote {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 150px;
}
.orea-testimonial-section.style-5.image-right .details {
  order: 2;
}
.orea-testimonial-section.style-5.image-right .review {
  order: 1;
}
.orea-testimonial-section.style-5.image-right .orea-testimonial-item .client-details {
  padding-left: 40px;
  padding-right: 0;
  border-right: none;
  border-left: 1px solid #a09eab;
}

/* Testimonial navigation style 5*/
.orea-testimonial-section.style-5 {
  /* Swiper navigation */
  /* swiper pagination */
}
.orea-testimonial-section.style-5 .orea-swiper {
  overflow: visible !important;
}
.orea-testimonial-section.style-5 .orea-swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}
.orea-testimonial-section.style-5 .orea-swiper-navigation .swiper-button-prev,
.orea-testimonial-section.style-5 .orea-swiper-navigation .swiper-button-next {
  position: static;
  margin: 0;
  height: auto;
}
.orea-testimonial-section.style-5 .orea-swiper-navigation .swiper-button-prev:after,
.orea-testimonial-section.style-5 .orea-swiper-navigation .swiper-button-next:after {
  content: "\f11c";
  font-family: "flaticon_combined";
  font-size: 35px;
  color: #2a1a55;
}
.orea-testimonial-section.style-5 .orea-swiper-navigation .swiper-button-prev:after {
  transform: scale(-1);
}
.orea-testimonial-section.style-5 .orea-swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-top: 50px;
}
.orea-testimonial-section.style-5 .orea-swiper-pagination .swiper-auto-progress-bar-wrapper {
  position: relative;
  max-width: 700px;
  width: 100%;
}
.orea-testimonial-section.style-5 .orea-swiper-pagination .swiper-auto-progress-bar-wrapper .swiper-auto-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  background-color: #ffffff;
  width: 100%;
}
.orea-testimonial-section.style-5 .orea-swiper-pagination .swiper-auto-progress-bar-wrapper .swiper-auto-progress-bar-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  background-color: #ffc107;
  width: 0;
  transition: width 0.4s;
}
.orea-testimonial-section.style-5.light .orea-swiper-pagination .swiper-auto-progress-bar-wrapper .swiper-auto-progress-bar {
  background: #fbfbff;
}

@media only screen and (max-width: 1199px) {
  /* Testimonial slider style-5*/
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-review p {
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Testimonial slider style-5*/
  .orea-testimonial-section.style-5 .testimonial-top .header {
    font-size: 40px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-review p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* Testimonial slider style-5*/
  .orea-testimonial-section.style-5 .testimonial-top {
    display: none;
  }
  .orea-testimonial-section.style-5 .testimonial-top-right {
    display: none;
  }
  .orea-testimonial-section.style-5 .testimonial-slider-main {
    margin-left: 0px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item {
    padding: 30px 20px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-details {
    padding-right: 20px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-details .client-image {
    height: 250px;
    max-width: 200px;
    margin-bottom: 10px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-review {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-review p {
    padding: 0;
    font-size: 20px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-review .quote {
    width: 100px;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-5*/
  .orea-testimonial-section.style-5 .testimonial-top {
    display: none;
  }
  .orea-testimonial-section.style-5 .testimonial-top-right {
    display: none;
  }
  .orea-testimonial-section.style-5 .testimonial-slider-main {
    margin-left: 0px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item {
    padding: 30px 20px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-details {
    padding-right: 0px;
    border-right: none;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-details .client-image {
    height: 200px;
    max-width: 150px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-review {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-review p {
    padding: 0;
    text-align: center;
    font-size: 20px;
  }
  .orea-testimonial-section.style-5 .orea-testimonial-item .client-review .quote {
    width: 100px;
  }
  .orea-testimonial-section.style-5.image-right .details {
    order: 1;
  }
  .orea-testimonial-section.style-5.image-right .review {
    order: 2;
  }
  .orea-testimonial-section.style-5.image-right .orea-testimonial-item .client-details {
    padding-left: 0;
    border-left: none;
  }
}
/*-- testimonial 6 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 6*/
.orea-testimonial-section.style-6 .orea-testimonial-main {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}
.orea-testimonial-section.style-6 .orea-testimonial-item {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  max-width: 870px;
  margin: 0 auto;
  /* > client */
  /* > client */
}
.orea-testimonial-section.style-6 .orea-testimonial-item .review {
  border-left: 1px solid;
  border-image-source: linear-gradient(180deg, #002dff 0%, rgba(0, 45, 255, 0) 100%);
  border-image-slice: 1;
  padding-left: 40px;
  position: relative;
  z-index: 2;
}
.orea-testimonial-section.style-6 .orea-testimonial-item .review p {
  font-size: 32px;
  font-style: italic;
  font-weight: 200;
  color: #ffc107;
}
.orea-testimonial-section.style-6 .orea-testimonial-item .client {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.orea-testimonial-section.style-6 .orea-testimonial-item .avatar,
.orea-testimonial-section.style-6 .orea-testimonial-item .star {
  padding-left: 40px;
}
.orea-testimonial-section.style-6 .orea-testimonial-item .avatar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.orea-testimonial-section.style-6 .orea-testimonial-item .avatar img {
  width: 40px;
  border-radius: 50%;
}
.orea-testimonial-section.style-6 .orea-testimonial-item .avatar .author-details {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.orea-testimonial-section.style-6 .orea-testimonial-item .avatar h5 {
  font-weight: 400;
  font-size: 28px;
  color: #ffc107;
}
.orea-testimonial-section.style-6 .orea-testimonial-item .avatar p {
  font-size: 18px;
}
.orea-testimonial-section.style-6 .orea-testimonial-item:after {
  content: "";
  background-image: url(../../assets/shape/testimonial/quote.svg);
  background-repeat: no-repeat;
  position: absolute;
  height: 55px;
  width: 75px;
  right: 0;
  top: 0;
  background-size: cover;
}
.orea-testimonial-section.style-6.image-bottom .client {
  order: 2;
}
.orea-testimonial-section.style-6.full-border .orea-testimonial-item {
  border-left: 1px solid;
  border-image-source: linear-gradient(180deg, #002dff 0%, rgba(0, 45, 255, 0) 100%);
  border-image-slice: 1;
}
.orea-testimonial-section.style-6.full-border .orea-testimonial-item .review {
  border-image-source: none;
  border-left: none;
}

/* Testimonial navigation style 6*/
.orea-testimonial-section.style-6 .orea-testimonial-main {
  /* BUllets */
}
.orea-testimonial-section.style-6 .orea-testimonial-main .orea-swiper-nav-wrapper {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-pagination-fraction {
  color: #f7f7f7;
  text-align: center;
  letter-spacing: -2px;
  position: relative;
  bottom: 0;
  top: 0;
  width: auto;
}
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-pagination-fraction span {
  color: #ffc107;
}
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-pagination-fraction span.swiper-pagination-current {
  font-size: 24px;
  color: #000000;
}
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-button-prev,
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-button-next {
  position: relative;
  top: 0;
  bottom: 0;
  margin: 0;
  left: 0;
  right: 0;
  font-weight: 300;
  color: #000000;
  width: auto;
  height: auto;
}
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-button-prev::after,
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-button-next::after {
  font-family: "flaticon_combined";
  font-size: 28px;
}
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-button-next::after {
  content: "\f110";
}
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-button-prev::after {
  content: "\f10f";
}
.orea-testimonial-section.style-6 .orea-testimonial-main .swiper-pagination {
  transition: all 0.3s ease;
  position: relative;
  bottom: 0;
  top: 0;
  overflow: visible;
  width: auto;
  left: 0;
  transform: inherit;
}
.orea-testimonial-section.style-6 .orea-testimonial-main span.swiper-pagination-bullet {
  background: #000000 !important;
  opacity: 1 !important;
  width: 10px;
  height: 10px;
  margin: 0px 7px !important;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-6 .orea-testimonial-main span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: transparent !important;
  border: 1px solid #000000;
  transform: scale(1.5);
}

@media only screen and (max-width: 767px) {
  /* Testimonial slider style-6*/
  .orea-testimonial-section.style-6 .orea-testimonial-item .review p {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* Testimonial slider style-6*/
  .orea-testimonial-section.style-6 .orea-testimonial-item .avatar h5 {
    font-size: 24px;
  }
  .orea-testimonial-section.style-6 .orea-testimonial-item .avatar,
  .orea-testimonial-section.style-6 .orea-testimonial-item .star,
  .orea-testimonial-section.style-6 .orea-testimonial-item .review {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-6*/
  .orea-testimonial-section.style-6 .orea-testimonial-item .avatar h5 {
    font-size: 22px;
  }
  .orea-testimonial-section.style-6 .orea-testimonial-item .avatar,
  .orea-testimonial-section.style-6 .orea-testimonial-item .star,
  .orea-testimonial-section.style-6 .orea-testimonial-item .review {
    padding-left: 25px;
  }
}
/*-- testimonial 7 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 7*/
.orea-testimonial-section.style-7 {
  padding-left: 10px;
  padding-right: 10px;
  overflow-x: clip;
}
.orea-testimonial-section.style-7 .swiper-slide {
  height: auto;
}
.orea-testimonial-section.style-7 .testimonial-main-wrapper {
  position: relative;
  max-width: 700px;
}
.orea-testimonial-section.style-7 .testimonial-main-wrapper .testimonial-slider {
  overflow: hidden;
  height: 650px;
  padding-right: 40px;
}
.orea-testimonial-section.style-7 .orea-testimonial-item {
  min-height: 100%;
  height: auto;
  gap: 20px;
  border: none;
  background-color: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.orea-testimonial-section.style-7 .orea-testimonial-item p.review-text {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #2a1a55;
  line-height: 1.6em;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .review {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .review .icon i {
  font-size: 22px;
  -webkit-text-stroke: 1px transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(135deg, #ffdf28, #ffc107, #ffea00);
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-top .author {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-top .author .author-image {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-top .author .author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-top .author .author-details h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-top .author .author-details p {
  font-size: 13px;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-top .author .author-details p,
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-top .author .author-details h5 {
  color: #000000;
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-bottom a {
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 14px;
  color: #ffc107;
  border: 1px solid #ffc107;
  background-color: rgba(255, 193, 7, 0.1294117647);
}
.orea-testimonial-section.style-7 .orea-testimonial-item .inner-bottom p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}
.orea-testimonial-section.style-7.horizontal-slider .testimonial-main-wrapper {
  max-width: 1360px;
  margin: 0 auto;
}
.orea-testimonial-section.style-7.horizontal-slider .testimonial-main-wrapper .testimonial-slider {
  height: auto;
  padding: 0;
}
.orea-testimonial-section.style-7.horizontal-slider .orea-testimonial-item {
  background-color: #ffffff;
  border: 1px solid #a09eab;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}
.orea-testimonial-section.style-7.horizontal-slider .orea-testimonial-item .inner-top {
  justify-content: flex-start;
}
.orea-testimonial-section.style-7.horizontal-slider .orea-testimonial-item .inner-top .quote {
  position: absolute;
  right: 20px;
  top: 85px;
}
.orea-testimonial-section.style-7.horizontal-slider .orea-testimonial-item p.review-text {
  font-weight: 400;
  margin: 40px 0px 120px 0px;
}

/* Testimonial navigation style 7*/
.orea-testimonial-section.style-7 {
  /* Swiper nav and pagination wrapper */
}
.orea-testimonial-section.style-7 .orea-swiper-navigation {
  z-index: 2;
}
.orea-testimonial-section.style-7 .orea-swiper-navigation .swiper-button-prev,
.orea-testimonial-section.style-7 .orea-swiper-navigation .swiper-button-next {
  position: absolute;
  top: 40%;
  margin: 0;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
}
.orea-testimonial-section.style-7 .orea-swiper-navigation .swiper-button-prev:after,
.orea-testimonial-section.style-7 .orea-swiper-navigation .swiper-button-next:after {
  content: "\f197";
  font-family: "flaticon_combined";
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-7 .orea-swiper-navigation .swiper-button-prev {
  left: -20px;
}
.orea-testimonial-section.style-7 .orea-swiper-navigation .swiper-button-next {
  right: -20px;
}
.orea-testimonial-section.style-7 .orea-swiper-navigation .swiper-button-prev:after {
  transform: scale(-1);
}
.orea-testimonial-section.style-7 .swiper-pagination {
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.orea-testimonial-section.style-7 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000000;
  opacity: 1;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}
.orea-testimonial-section.style-7 .swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #ffc107;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orea-testimonial-section.style-7 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 4px;
  height: 4px;
  background-color: #ffc107;
  margin: 10px 0;
}
.orea-testimonial-section.style-7 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
  visibility: visible;
}
.orea-testimonial-section.style-7.horizontal-slider .swiper-pagination {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: static;
  flex-direction: row;
}
.orea-testimonial-section.style-7.horizontal-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  margin: 0 10px;
}
.orea-testimonial-section.style-7 .orea-swiper-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Testimonial slider style-7*/
  .orea-testimonial-section.style-7 .row {
    row-gap: 40px;
  }
  .orea-testimonial-section.style-7 .testimonial-main-wrapper .testimonial-slider {
    height: 560px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* Testimonial style 7*/
  .orea-testimonial-section.style-7 .row {
    row-gap: 40px;
  }
  .orea-testimonial-section.style-7 .testimonial-main-wrapper .testimonial-slider {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  /* Testimonial style 7 */
  .orea-testimonial-section.style-7 .orea-testimonial-item {
    gap: 40px;
  }
  .orea-testimonial-section.style-7 .orea-testimonial-item .inner-top .quote {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial style 7*/
  .orea-testimonial-section.style-7 .row {
    row-gap: 40px;
  }
  .orea-testimonial-section.style-7 .testimonial-main-wrapper .testimonial-slider {
    padding-right: 10px;
    height: 350px;
  }
  .orea-testimonial-section.style-7 .swiper-pagination {
    display: none;
  }
}
/*-- testimonial 8 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 8*/
.orea-testimonial-section.style-8 {
  position: relative;
  overflow: hidden;
}
.orea-testimonial-section.style-8 .testimonial-slider {
  max-width: 1320px;
  margin: 0 auto;
}
.orea-testimonial-section.style-8 .testimonial-item {
  position: relative;
  height: 600px;
}
.orea-testimonial-section.style-8 .testimonial-item h5 {
  font-size: 20px;
}
.orea-testimonial-section.style-8 .testimonial-item .testimonial-details {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.orea-testimonial-section.style-8 .testimonial-item .testimonial-details img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-8 .testimonial-item .testimonial-details:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 193, 7, 0.1294117647);
  z-index: 1;
}
.orea-testimonial-section.style-8 .testimonial-item .testimonial-details .client-details {
  position: absolute;
  bottom: 0%;
  left: 0%;
  padding: 20px;
  z-index: 2;
}
.orea-testimonial-section.style-8 .testimonial-item .testimonial-details .client-details h5 a,
.orea-testimonial-section.style-8 .testimonial-item .testimonial-details .client-details p {
  color: #ffffff;
}
.orea-testimonial-section.style-8 .testimonial-item .client-review {
  background-color: #2a1a55;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 0%;
  width: 100%;
  z-index: 3;
  padding: 30px;
  padding-top: 70px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}
.orea-testimonial-section.style-8 .testimonial-item .client-review p,
.orea-testimonial-section.style-8 .testimonial-item .client-review h5 a {
  color: #ffffff;
}
.orea-testimonial-section.style-8 .testimonial-item .client-review > p {
  margin-top: 30px;
  margin-bottom: 10px;
  line-height: 1.6em;
  font-weight: 500;
}
.orea-testimonial-section.style-8 .testimonial-item .client-review .vertical-line {
  width: 1px;
  height: 0%;
  background-color: #ffffff;
  margin-bottom: 10px;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.2s;
}
.orea-testimonial-section.style-8 .testimonial-item .client-review .client-details {
  position: absolute;
  bottom: 0%;
  left: 0%;
  padding: 30px;
}
.orea-testimonial-section.style-8 .swiper-slide-active .testimonial-item .client-review {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.orea-testimonial-section.style-8 .swiper-slide-active .testimonial-item .client-review .vertical-line {
  height: 190px;
  opacity: 1;
  visibility: visible;
}
.orea-testimonial-section.style-8 .testimonial-bottom {
  margin-top: 40px;
}

/* Testimonial navigation style 8*/
.orea-testimonial-section.style-8 {
  /* Swiper pagination */
}
.orea-testimonial-section.style-8 .orea-swiper-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.orea-testimonial-section.style-8 .orea-swiper-navigation {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  height: 100%;
}
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-prev:after {
  content: "\f10f";
}
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-next:after {
  content: "\f110";
}
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-prev,
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-next {
  position: relative;
  left: inherit;
  right: inherit;
  top: inherit;
  border: 1px solid #a09eab;
  width: 55px;
  height: 55px;
  line-height: 80px;
  text-align: center;
  margin: 0;
  background: #ffffff;
  transition: all 0.6s ease;
}
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-prev:hover,
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-next:hover {
  color: #ffffff !important;
  border-color: #2a1a55;
}
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-prev:hover:before,
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-next:hover:before {
  width: 100%;
}
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-prev:hover:after,
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-next:hover:after {
  color: #ffffff;
}
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-prev:before,
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-next:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #2a1a55;
  transition: all 0.6s ease;
  z-index: -1;
}
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-prev:after,
.orea-testimonial-section.style-8 .orea-swiper-navigation .swiper-button-next:after {
  font-family: "flaticon_combined";
  font-size: 30px;
  color: #000000;
}
.orea-testimonial-section.style-8 .orea-swiper-pagination {
  height: 100%;
}
.orea-testimonial-section.style-8 .orea-swiper-pagination .swiper-pagination {
  position: static;
  font-size: 60px;
  text-align: left;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #272a2f;
}
.orea-testimonial-section.style-8 .orea-swiper-pagination .swiper-pagination span {
  line-height: 1;
}
.orea-testimonial-section.style-8 .orea-swiper-pagination .swiper-pagination span.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #6f717e;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-8 .orea-swiper-pagination .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.8);
  background-color: #2a1a55;
}
.orea-testimonial-section.style-8 .orea-swiper-pagination .swiper-pagination .swiper-pagination-current {
  color: #2a1a55;
}

@media only screen and (max-width: 991px) {
  /* Testimonial slider style-8*/
  .orea-testimonial-section.style-8 .swiper-slide-active .testimonial-item .client-review .vertical-line {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  /* Testimonial slider style-8*/
  .orea-testimonial-section.style-8 .swiper-slide-active .testimonial-item .client-review .vertical-line {
    height: 160px;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-8*/
  .orea-testimonial-section.style-8 .swiper-slide-active .testimonial-item .client-review .vertical-line {
    height: 160px;
  }
}
/*-- testimonial 9 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 9*/
.orea-testimonial-section.style-9 {
  z-index: 2;
  position: relative;
  text-align: center;
}
.orea-testimonial-section.style-9 .orea-testimonial-wrapper {
  position: relative;
}
.orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main {
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 830px;
}
.orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main .testimonial-slider {
  width: 100%;
  height: 100%;
}
.orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main .testimonial-slider .testimonial-item {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main .testimonial-slider .testimonial-item img {
  width: 110px;
  margin-bottom: 40px;
}
.orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main .testimonial-slider .testimonial-item .testimonial-text {
  max-width: 650px;
  margin: 0 auto;
}
.orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main .testimonial-slider .testimonial-item .testimonial-text p {
  margin-bottom: 40px;
  line-height: 1.5;
  color: #ffc107;
  font-style: italic;
  font-size: 32px;
}
.orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main .testimonial-slider .testimonial-item .testimonial-text h5 {
  color: #6f717e;
  letter-spacing: 6px;
  font-size: 16px;
  font-weight: 400;
}

/* Testimonial navigation style 9*/
.orea-testimonial-section.style-9 .swiper-button-prev,
.orea-testimonial-section.style-9 .swiper-button-next {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}
.orea-testimonial-section.style-9 .swiper-button-prev:after,
.orea-testimonial-section.style-9 .swiper-button-next:after {
  content: "";
  opacity: 0.6;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
}
.orea-testimonial-section.style-9 .swiper-button-prev:hover:after,
.orea-testimonial-section.style-9 .swiper-button-next:hover:after {
  opacity: 1;
}
.orea-testimonial-section.style-9 .swiper-button-prev {
  left: 50px;
}
.orea-testimonial-section.style-9 .swiper-button-prev:after {
  background-image: url(../../assets/shape/testimonial/shape-10.svg);
}
.orea-testimonial-section.style-9 .swiper-button-next {
  right: 50px;
}
.orea-testimonial-section.style-9 .swiper-button-next:after {
  background-image: url(../../assets/shape/testimonial/shape-8.svg);
}
.orea-testimonial-section.style-9 .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  bottom: 30px !important;
}
.orea-testimonial-section.style-9 .swiper-pagination span.swiper-pagination-bullet {
  background: transparent;
  font-size: 16px;
  color: #000000;
  opacity: 0.4;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-9 .swiper-pagination span.swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0px;
  background-color: #000000;
  transition: all 0.3s ease;
  opacity: 0;
}
.orea-testimonial-section.style-9 .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-size: 24px;
  opacity: 1;
}
.orea-testimonial-section.style-9 .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  height: 30px;
  opacity: 1;
}

@media only screen and (max-width: 991px) {
  /* Testimonial slider nav style-9*/
  .orea-testimonial-section.style-9 .swiper-button-prev {
    left: 20px;
  }
  .orea-testimonial-section.style-9 .swiper-button-next {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  /* Testimonial slider nav style-9*/
  .orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main .testimonial-slider .testimonial-item img {
    width: 70px;
    margin-bottom: 30px;
  }
  .orea-testimonial-section.style-9 .orea-testimonial-wrapper .orea-testimonial-main .testimonial-slider .testimonial-item .testimonial-text p {
    font-size: 24px;
  }
  .orea-testimonial-section.style-9 .swiper-button-prev,
  .orea-testimonial-section.style-9 .swiper-button-next {
    display: none;
  }
}
/*-- testimonial 10 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 10*/
.orea-testimonial-section.style-10 .orea-testimonial-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}
.orea-testimonial-section.style-10 .testimonial-item {
  min-height: 500px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 20px;
  border-left: 1px solid #a09eab;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-top .slider-image {
  width: 190px;
  height: 155px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-top .slider-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-top .slider-image img {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-top .slider-description p {
  color: #2a1a55;
  font-size: 18px;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-avatar {
  position: relative;
  width: 100%;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-avatar:after {
  content: "";
  width: 110px;
  height: 1px;
  background-color: #2a1a55;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  transition: all 0.6s ease;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-avatar h5 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4em;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-avatar h5 a {
  color: #2a1a55;
}
.orea-testimonial-section.style-10 .testimonial-item .slider-avatar p {
  font-size: 14px;
}
.orea-testimonial-section.style-10 .testimonial-item:hover .slider-top .slider-image img {
  transform: scale(1.15);
}
.orea-testimonial-section.style-10 .testimonial-item:hover .slider-avatar:after {
  background-color: #ffc107;
}
.orea-testimonial-section.style-10.center .testimonial-item .slider-top .slider-image {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}
.orea-testimonial-section.style-10.center .testimonial-item .slider-top .slider-description p {
  text-align: center;
}
.orea-testimonial-section.style-10.center .testimonial-item .slider-avatar {
  text-align: center;
}
.orea-testimonial-section.style-10.center .testimonial-item .slider-avatar:after {
  display: none;
}

/* Testimonial navigation style 10*/
.orea-testimonial-section.style-10 {
  /* End Swiper navigation style */
}
.orea-testimonial-section.style-10 .orea-swiper-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.orea-testimonial-section.style-10 .orea-swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.orea-testimonial-section.style-10 .orea-swiper-navigation .swiper-button-prev,
.orea-testimonial-section.style-10 .orea-swiper-navigation .swiper-button-next {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #2a1a55;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  right: 0;
  left: inherit;
  margin: 0;
  text-align: center;
}
.orea-testimonial-section.style-10 .orea-swiper-navigation .swiper-button-prev:after,
.orea-testimonial-section.style-10 .orea-swiper-navigation .swiper-button-next:after {
  font-family: "flaticon_combined";
  color: #2a1a55;
  font-size: 20px;
  font-weight: 700;
}
.orea-testimonial-section.style-10 .orea-swiper-navigation .swiper-button-prev:hover,
.orea-testimonial-section.style-10 .orea-swiper-navigation .swiper-button-next:hover {
  width: 75px;
  border-radius: 24px;
}
.orea-testimonial-section.style-10 .orea-swiper-navigation .swiper-button-prev:after {
  content: "\f10f";
}
.orea-testimonial-section.style-10 .orea-swiper-navigation .swiper-button-next:after {
  content: "\f110";
}
.orea-testimonial-section.style-10 .swiper-navigation-mobile {
  margin-top: 40px;
  display: none;
}
.orea-testimonial-section.style-10 .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}
.orea-testimonial-section.style-10 .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2a1a55;
  transition: all 0.3s ease;
  margin: 0 8px;
}

@media only screen and (max-width: 1199px) {
  /* Testimonial slider style-10*/
  .orea-testimonial-section.style-10 .testimonial-item {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-10*/
  .orea-testimonial-section.style-10 .testimonial-item {
    padding: 0px;
    border-left: none;
  }
}
/*-- testimonial 11 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 11*/
.orea-testimonial-section.style-11 .inner-main-wrapper {
  height: 100%;
  display: flex;
  align-items: normal;
  justify-content: center;
  flex-direction: column;
  row-gap: 40px;
}
.orea-testimonial-section.style-11 .testimonial-item {
  text-align: center;
}
.orea-testimonial-section.style-11 .testimonial-item > p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6em;
}
.orea-testimonial-section.style-11 .testimonial-item .client-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.orea-testimonial-section.style-11 .testimonial-item .client-info h4 {
  font-size: 20px;
}
.orea-testimonial-section.style-11 .testimonial-item .client-info p {
  font-style: italic;
}
.orea-testimonial-section.style-11 .testimonial-thumb-slider {
  display: inline-block;
}
.orea-testimonial-section.style-11 .testimonial-thumb-slider .swiper-wrapper {
  justify-content: center;
  align-items: center;
}
.orea-testimonial-section.style-11 .testimonial-thumb-slider .swiper-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orea-testimonial-section.style-11 .testimonial-thumb-slider .swiper-slide-thumb-active .testimonial-thumb-item {
  width: 60px;
  height: 60px;
  border-color: #ffc107;
}
.orea-testimonial-section.style-11 .testimonial-thumb-item {
  cursor: pointer;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-11 .testimonial-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-11.thumb-top .testimonial-thumb-slider {
  order: 1;
}
.orea-testimonial-section.style-11.thumb-top .testimonial-slider {
  order: 2;
}
.orea-testimonial-section.style-11.thumb-top .testimonial-item .client-info {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/*-- testimonial 12 -- */
/*-- Base: mixin & variable  -- */
/* Testimonial style 12*/
.orea-testimonial-section.style-12 .inner-main-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}
.orea-testimonial-section.style-12 .slider-main {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 30px;
}
.orea-testimonial-section.style-12 .swiper-slide-active .orea-testimonial-item {
  border-color: #ffc107;
}
.orea-testimonial-section.style-12 .orea-testimonial-item {
  border: 1px solid rgba(255, 71, 71, 0.183);
  transition: all 0.3s ease;
  background-color: #ffffff;
  padding: 30px;
}
.orea-testimonial-section.style-12 .orea-testimonial-item .quote {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-top: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  background-color: #ffc107;
  border-color: #ffc107;
  box-shadow: 0px 2px 20px 0px #ffc107;
}
.orea-testimonial-section.style-12 .orea-testimonial-item .quote i {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-12 .orea-testimonial-item .testimonial-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  display: none;
}
.orea-testimonial-section.style-12 .orea-testimonial-item .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.orea-testimonial-section.style-12 .orea-testimonial-item p {
  margin: 0px 0px 20px 0px;
  color: #6f717e;
}
.orea-testimonial-section.style-12 .orea-testimonial-item .client {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.orea-testimonial-section.style-12 .orea-testimonial-item .client h5 {
  font-size: 16px;
  font-weight: 600;
}
.orea-testimonial-section.style-12 .orea-testimonial-item .client span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #6f717e;
}
.orea-testimonial-section.style-12 .orea-testimonial-item:hover {
  border-color: #ffc107;
}
.orea-testimonial-section.style-12.border-less .orea-testimonial-item {
  border: none;
  background-color: transparent;
  padding: 0px;
}
.orea-testimonial-section.style-12.border-less .orea-testimonial-item .quote {
  margin-top: 0px;
  box-shadow: none;
}
.orea-testimonial-section.style-12.border-less .orea-testimonial-item .client {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 60px;
}
.orea-testimonial-section.style-12.border-less .orea-testimonial-item .client:before {
  content: "";
  width: 45px;
  height: 2px;
  background-color: #ffc107;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
}
.orea-testimonial-section.style-12.image-outside .orea-testimonial-item {
  padding: 0;
  display: flex;
  border: none;
}
.orea-testimonial-section.style-12.image-outside .orea-testimonial-item .testimonial-image {
  width: 200px;
  height: 200px;
}
.orea-testimonial-section.style-12.image-outside .orea-testimonial-item .details {
  width: 77%;
  background: #ffffff;
  padding: 30px 30px 30px 70px;
  margin-left: -50px;
  margin-top: 80px;
  border: 1px solid #ffc107;
}
.orea-testimonial-section.style-12.image-outside .orea-testimonial-item .details p {
  margin-top: 0;
  font-size: 15px;
  font-style: italic;
}
.orea-testimonial-section.style-12.quote-enable .orea-testimonial-item .quote {
  display: flex;
  margin-bottom: 20px;
}
.orea-testimonial-section.style-12.image-enable .orea-testimonial-item .testimonial-image {
  display: block;
  margin-bottom: 20px;
}
.orea-testimonial-section.style-12.image-enable.quote-enable .orea-testimonial-item .quote {
  position: absolute;
  top: 0px;
  right: 0px;
}

/* Testimonial navigation style 12*/
.orea-testimonial-section.style-12 .inner-main-wrapper {
  position: relative;
}
.orea-testimonial-section.style-12 .swiper-pagination {
  position: relative;
  top: 0;
  bottom: 0;
  margin: 0;
  margin-top: 40px;
}
.orea-testimonial-section.style-12 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 20px;
  border-radius: 5px;
  background-color: #ffc107;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-12 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 32px;
  background-color: #ffc107;
}
.orea-testimonial-section.style-12 .swiper-button-prev,
.orea-testimonial-section.style-12 .swiper-button-next {
  margin: 0;
  width: 30px;
  height: 30px;
  top: 35%;
}
.orea-testimonial-section.style-12 .swiper-button-prev:after,
.orea-testimonial-section.style-12 .swiper-button-next:after {
  color: #ffc107;
  font-size: 20px;
  transition: all 0.3s ease;
}
.orea-testimonial-section.style-12 .swiper-button-prev:hover::after,
.orea-testimonial-section.style-12 .swiper-button-next:hover::after {
  transform: scale(1.2);
  color: #ffc107;
}
.orea-testimonial-section.style-12 .swiper-button-prev {
  left: 0;
}
.orea-testimonial-section.style-12 .swiper-button-next {
  right: 0;
}
.orea-testimonial-section.style-12.image-outside .swiper-button-prev,
.orea-testimonial-section.style-12.image-outside .swiper-button-next {
  top: 45%;
}

@media only screen and (max-width: 1024px) {
  /* Testimonial slider style-12*/
  .orea-testimonial-section.style-12 .inner-main-wrapper {
    max-width: 700px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* Testimonial style 12*/
  .orea-testimonial-section.style-12.image-outside .orea-testimonial-item .testimonial-image {
    width: 120px;
    height: 120px;
  }
  .orea-testimonial-section.style-12.image-outside .orea-testimonial-item .details {
    width: 90%;
    margin-top: 55px;
  }
}
@media only screen and (max-width: 575px) {
  /* Testimonial slider style-12*/
  .orea-testimonial-section.style-12 .slider-main {
    max-width: 100%;
  }
  .orea-testimonial-section.style-12 .swiper-button-prev,
  .orea-testimonial-section.style-12 .swiper-button-next {
    display: none;
  }
  .orea-testimonial-section.style-12.image-outside .orea-testimonial-item .testimonial-image {
    width: 80px;
    height: 80px;
  }
  .orea-testimonial-section.style-12.image-outside .orea-testimonial-item .details {
    width: 90%;
    padding: 40px 20px 40px 20px;
    margin-left: -55px;
    margin-top: 50px;
  }
}/*# sourceMappingURL=testimonial.css.map */