.custom-testimonial-box {
  height: 880px;
  width: 100%;
  max-width: 1280px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.custom-testimonial-box .custom-testimonial-point {
  border-radius: 16px;
  background: var(--white, #fff);
  padding: 14px;
  display: flex;
  gap: 16px;
  /* shadow shape */
  box-shadow: 24px 30px 51px 0px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: fit-content;
}
.custom-testimonial-box .custom-testimonial-point .testi-imgbox {
  width: 60px;
}

.custom-testimonial-box .custom-testimonial-point .testi-imgbox img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.testi-descbox {
  width: fit-content;
}
.custom-testimonial-box .testi-descbox .testi-title {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 6px 0;
}

.custom-testimonial-box .testi-descbox .testi-position {
  color: #6a6a6a;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px; /* 150% */
  margin: 0;
}

.custom-testimonial-point:hover .testi-position {
  color: #ff7e1d;
}
.custom-testimonial-box .testi-descbox .testi-description {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  display: none;
  transition: 0.3s all;
}

.custom-testimonial-point:hover .testi-description {
  display: block;
}

#testi-pointbox-1 {
  position: absolute;
  left: 700px;
  top: 90px;
}

#testi-pointbox-2 {
  position: absolute;
  left: 200px;
  top: 110px;
}
#testi-pointbox-3 {
  position: absolute;
  left: 50px;
  top: 350px;
}

#testi-pointbox-4 {
  position: absolute;
  left: 500px;
  top: 580px;
}
#testi-pointbox-5 {
  position: absolute;
  left: 820px;
  top: 330px;
}

@media (max-width: 768px) {
}
@media (max-width: 480px) {
}

/* table mobile owl carousel css code */

.custom-mobile-testimonial {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 10px;
  font-family: "Poppins", sans-serif;
  max-width: 1200px;
  margin: auto;
}

.custom-mobile-testimonial .testi .item {
  border-radius: 16px;
  background: var(--white, #fff);
  padding: 20px 15px;
  display: flex;
  gap: 16px;
  box-shadow: 1px 2px 10px 1px rgba(0, 0, 0, 0.1);
  margin: 15px 5px;
}
.custom-mobile-testimonial .testi .profile {
  display: flex;
  gap: 15px;
}
.custom-mobile-testimonial .testi .profile img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.custom-mobile-testimonial .testi .profile .information {
  margin-bottom: 15px;
}

.custom-mobile-testimonial .testi .profile .information p {
  font-size: 20px;
  color: #3c3c3c;
  font-weight: 700;
  margin-bottom: 8px;
}
.custom-mobile-testimonial .testi .profile .information span {
  color: #ff7e1d;
  font-weight: bold;
  font-size: 16px;
}
.custom-mobile-testimonial .testi .desc {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}


@media (max-width: 1200px) {
    .desktop-view { display: none; }
    .mobile-view { display: block; }
}
@media (min-width: 1201px) {
    .desktop-view { display: block; }
    .mobile-view { display: none; }
}