/* testimonials plugin */

.working-in-tr-rk-testimonial {
  transform: scale(0.9);
  position: relative;
}
.testimonial-prev,
.testimonial-next {
  position: absolute;
  font-size: 50px;
  cursor: pointer;
  color: rgba(68, 84, 106, 0.2);
  transition: all 0.2s ease-in-out;
}
.testimonial-prev {
  left: -20px;
  top: 30%;
}
.testimonial-next {
  right: -20px;
  top: 30%;
}

.testimonial-content {
  position: relative;
  height: 750px;
  scroll-margin: 100px;
}

.testimonial {
  width: 100%;
  height: auto;
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 75px 100px;

  transition: all 0.3s ease-out;
  cursor: grab;
  user-select: none;
}

.testimonial.active {
  display: block;
}
.testimonial p {
  color: #44546a;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  display: inline;
  position: relative;
}
.testimonial-content-quotation {
  /*   font-size: 150px;
  color: #846e96; */
}

.testimonial-content-quotation:first-child {
  position: absolute;
  left: -80px;
  top: 20px;
  font-size: 150px;
  color: #846e96;
}

.testimonial-content-quotation:nth-child(2) {
  position: relative;
}

.testimonial-content-quotation:nth-child(2)::after {
  content: '”';
  position: absolute;
  top: 45px;
  left: 20px;
  font-size: 150px;
  color: #846e96;
  z-index: 2;
}

.testimonial-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(68, 84, 106, 0.2);
  padding: 50px 0;
  margin: 0 10px;
}

.testimonial-tab {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0.55;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.testimonial-tab.active {
  opacity: 1;
}
.testimonial-tab-image {
  width: 117px;
  height: 117px;
  border-radius: 70px;
  margin-right: 27px;
}

.testimonial-tab-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 999px;
}

.testimonial-tab-text {
}

.testimonial-tab-text h3 {
  color: #44546a;
  font-size: 26px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
}

.testimonial-tab-text p {
  font-size: 24px;
  font-weight: 500;
  color: #44546a;
}

@media screen and (max-width: 600px) {
  .working-in-tr-rk-testimonial {
    transform: scale(0.9);
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }

  .testimonial-prev {
    left: 0px;
    /* top: 15%; */
    top: 100px;
  }
  .testimonial-next {
    right: 0px;
    /* top: 15%; */
    top: 100px;
  }

  .testimonial-content {
    position: static;
    height: auto;
    padding-bottom: 50px;
    scroll-margin: 400px;
  }
  .testimonial-tab {
    display: none;
  }
  .testimonial-tab-image {
    margin-right: 0;
  }
  .testimonial-tab.active {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .testimonial {
    position: static;
    transform: translate(0px, 0px);

    padding: 0px 20px;
  }
  .testimonial-content-quotation:first-child {
    left: -45px;
    top: 0px;
    font-size: 70px;
  }
  .testimonial-content-quotation:nth-child(2)::after {
    top: 25px;
    left: 10px;
    font-size: 70px;
  }
  .testimonial p {
    font-size: 16px;
    line-height: 26px;
  }
  .testimonial-tabs {
    flex-wrap: wrap;
    justify-content: center;
    border: none;
  }
  .testimonial-tab {
    flex-direction: column;

    padding: 20px;
  }
  .testimonial-tab-text {
    margin-top: 20px;
  }
  .testimonial-tab-text h3 {
    font-size: 22px;
    padding-bottom: 5px;
  }
  .testimonial-tab-text p {
    font-size: 18px;
  }
}
@media screen and (min-width: 600px) {
  .working-in-tr-rk-testimonial {
    transform: scale(0.9);
  }
  .testimonial-prev {
    left: -50px;
    /*     top: 30%; */
    top: 100px;
  }
  .testimonial-next {
    right: -50px;
    /*  top: 30%; */

    top: 100px;
  }

  .testimonial-content {
    position: static;
    height: auto;
    padding-bottom: 50px;
  }

  .testimonial {
    position: static;
    transform: translate(0px, 0px);

    padding: 0px 20px;
  }
  .testimonial-content-quotation:first-child {
    left: -45px;
    top: 0px;
    font-size: 70px;
  }
  .testimonial-content-quotation:nth-child(2)::after {
    top: 17px;
    left: 15px;
    font-size: 70px;
  }
  .testimonial p {
    font-size: 16px;
    line-height: 24px;
  }
  .testimonial-tabs {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .testimonial-tab {
    flex: 1;
    flex-direction: column;

    padding: 10px;
  }
  .testimonial-tab-text {
    margin-top: 20px;
  }
  .testimonial-tab-text h3 {
    font-size: 22px;
    padding-bottom: 5px;
  }
  .testimonial-tab-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .testimonial p {
    font-size: 18px;
    line-height: 24px;
  }
  .testimonial-tab {
    padding: 20px;
  }
  .testimonial-prev {
    top: 250px;
  }
  .testimonial-next {
    top: 250px;
  }
}
@media screen and (min-width: 1400px) {
  .working-in-tr-rk-testimonial {
    transform: scale(0.9);
  }

  .testimonial-content {
    position: relative;
    height: 450px;
  }

  .testimonial {
    width: 100%;
    height: auto;
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 75px 100px;

    transition: all 0.3s ease-out;
  }
  .testimonial p {
    font-size: 20px;
    line-height: 32px;
  }

  .testimonial-content-quotation:first-child {
    left: -50px;
    top: 10px;
    font-size: 100px;
  }

  .testimonial-content-quotation:nth-child(2) {
    position: relative;
  }

  .testimonial-content-quotation:nth-child(2)::after {
    top: 35px;
    left: 10px;
    font-size: 100px;
  }

  .testimonial-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(68, 84, 106, 0.2);
    padding: 50px 0;
    margin: 0 10px;
  }

  .testimonial-tab {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    opacity: 0.55;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    flex: none;
  }
}
