 #testimonials-section {
     background-image: linear-gradient(to top, #ffffffda, rgba(255, 255, 255, 0.856)), url(../images/testimonials/bg.png);
     background-position: center top;
     background-repeat: no-repeat;
     background-size: cover;
 }

 .heading-2-wrapper {
     font-size: 40px;
 }

 .heading-2-wrapper .heading-2 {
     font-size: 1.3em !important;
     font-weight: 600;
 }

 .heading-2-wrapper .para-2 {
     font-size: .45em !important;
     font-weight: 600;
     color: #222222a0;
 }

 #testimonials-section .testimonial-swiper {
     padding-top: 40px;
     padding-bottom: 80px;
     padding-inline: 40px;
 }

 #testimonials-section .testimonial-swiper .test-circle {
     position: absolute;
     width: 100%;
     aspect-ratio: 1;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%) translateY(36%);
     border-radius: 100%;
     background-image: url(../images/testimonials/arrow.svg);
     background-position: center;
     background-size: contain;
     background-repeat: no-repeat;

 }

 #testimonials-section .testimonial-image-wrapper {
     width: 100%;
     aspect-ratio: 1;
     border-radius: 100vh;
     background-color: var(--p-c);
     position: relative;
     transition: .4s;
 }

 #testimonials-section .testimonial-image-wrapper .testimonial-image-wrapper-child {
     width: 100%;
     height: 100%;
     background-image: url(../images/testimonials/1.webp);
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: 100vh;
     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.485);
 }

 #testimonials-section .swiper-slide.swiper-slide-active .testimonial-image-wrapper {
     transform: scale(1.4) translateY(10%);
 }

 #testimonials-section .swiper-slide.swiper-slide-active .testimonial-image-wrapper .testimonial-image-wrapper-child {
     border: 2px solid var(--p-c);
 }

 #testimonials-section .swiper-slide .testimonial-image-wrapper {
     transform: scale(.8);
     transform-origin: top;
     cursor: pointer;
 }

 #testimonials-section .swiper-slide.swiper-slide-prev .testimonial-image-wrapper {
     transform: scale(1.1) translate(-15%, 10%);
 }

 #testimonials-section .swiper-slide.swiper-slide-next .testimonial-image-wrapper {
     transform: scale(1.1) translate(15%, 10%);
 }

 #testimonials-section .swiper-slide.swiper-slide-active .testimonial-image-wrapper::after {
     content: '';
     position: absolute;
     top: 100%;
     left: 50%;
     width: 40%;
     height: 40%;
     mask-image: url(../images/icon/testi.svg);
     mask-position: center top;
     mask-size: contain;
     background-color: var(--p-c);
     mask-repeat: no-repeat;
     transform: translate(-50%, -70%);
     z-index: -2;
     animation: test-arrow .4s .2s forwards;
 }

 @keyframes test-arrow {
     0% {
         transform: translate(-50%, -70%);
     }

     100% {
         transform: translate(-50%, -15%);
     }
 }

 #testimonials-section .testimonials-review-wrapper-parent {
     font-size: 25px;
     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.217);
     border-radius: 15px;
     padding-inline: 3em;
     position: relative;
     background-color: var(--w-c);
     display: grid;
     overflow: hidden;
 }

 #testimonials-section .testimonials-review-wrapper-parent .testimonials-review-wrapper {
     grid-row: 1/2;
     grid-column: 1/2;
 }

 #testimonials-section .testimonials-review-wrapper-parent .testimonials-review-wrapper.show {
     animation: show .4s forwards ease-out;
 }

 #testimonials-section .testimonials-review-wrapper-parent .testimonials-review-wrapper.hide {
     animation: hide .4s forwards ease-out;
 }


 @keyframes hide {
     0% {
         transform: translateY(0);
         opacity: 1;
     }

     100% {
         transform: translateY(200%);
         opacity: 0;
     }
 }

 @keyframes show {
     0% {
         transform: translateY(200%);
         opacity: 0;
     }

     100% {
         transform: translateY(0);
         opacity: 1;
     }
 }

 #testimonials-section .t-r-wrapper:before,
 #testimonials-section .t-r-wrapper:after {
     content: "";
     position: absolute;
     width: 6%;
     aspect-ratio: 1;
     background-color: var(--p-c);
     mask-image: url(../images/testimonials/quote.svg);
     mask-position: center;
     mask-size: contain;
     mask-repeat: no-repeat;
     z-index: 99;
 }

 #testimonials-section .t-r-wrapper:after {
     top: 0;
     left: 0;
     transform: translate(100%, -50%);
 }

 #testimonials-section .t-r-wrapper:before {
     bottom: 0;
     right: 0;
     transform: translate(-100%, 50%) rotate(-180deg);
 }

 #testimonials-section .testimonials-review-wrapper .testi-profile-wrapper .test-profile {
     width: 2.7em;
     aspect-ratio: 1;
     background-image: url(../images/testimonials/1.png);
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.353);
     border: 2px solid var(--p-c);
     border-radius: 100vh;
 }

 #testimonials-section .testimonials-review-wrapper .testi-profile-wrapper .test-name {
     font-size: 1em;
     font-weight: 600;
 }

 #testimonials-section .testimonials-review-wrapper .testi-profile-wrapper .test-role {
     font-size: .7em;
     font-weight: 600;
     letter-spacing: 3px;
 }

 #testimonials-section .testimonials-review-wrapper .review-content {
     font-size: .7em;
     font-weight: 500;
     color: #222222b3;
 }

 /* special next prev */
 #testimonials-section .swiper-next-prev-wrapper {
     position: absolute;
     width: 100%;
     top: 50%;
     left: 0;
     transform: translateY(-50%) !important;
     z-index: 9;
     font-size: 22px;
 }

 #testimonials-section .swiper-button-next,
 #testimonials-section .swiper-button-prev {
     width: 2em;
     height: 2em;
     background-color: var(--p-c);
     border-radius: 100vh;
     transition: .4s;
     box-shadow: 0px 3px 7px color-mix(in srgb, var(--p-c) 41%, white);
 }

 #testimonials-section .swiper-button-next::after,
 #testimonials-section .swiper-button-prev::after {
     font-size: .9em !important;
     color: var(--w-c);
     border-radius: 100vh;
     font-weight: bold;
 }

 #testimonials-section .swiper-button-next {
     transform: translateX(50%);
 }

 #testimonials-section .swiper-button-prev {
     transform: translateX(-50%);
 }

 #testimonials-section .swiper-button-next:hover,
 #testimonials-section .swiper-button-prev:hover {
     background-color: var(--p-c);
 }

 #testimonials-section .swiper-pagination-bullet {
     background-color: var(--p-c) !important;
     opacity: .5 !important;
 }

 #testimonials-section .swiper-pagination-bullet-active {
     background-color: var(--p-c) !important;
     opacity: 1 !important;
     transform: scale(1.4) !important;
 }

 @media (max-width:1050px) {
     #testimonials-section .testimonial-swiper .test-circle {
         transform: translateX(-50%) translateY(32%);
     }
 }


 @media (max-width: 768px) {
     .heading-2-wrapper {
         font-size: 30px;
     }

     #testimonials-section .testimonials-review-wrapper-parent {
         font-size: 18px;
         padding-inline: 1.6em;
     }

     #testimonials-section .swiper-next-prev-wrapper {
         font-size: 16px;
     }

     #testimonials-section .swiper-button-next {
         transform: translateX(30%);
     }

     #testimonials-section .swiper-button-prev {
         transform: translateX(-30%);
     }

     #testimonials-section .testimonials-review-wrapper .testi-profile-wrapper .test-profile {
         width: 3em;
     }
 }

 @media (max-width:600px) {
     #testimonials-section .testimonial-swiper .test-circle {
         transform: translateX(-50%) translateY(30%);
     }

 }

 @media (max-width:460px) {
     #testimonials-section .testimonial-swiper .test-circle {
         transform: translateX(-50%) translateY(25%);
     }
 }

 @media (max-width:390px) {
     #testimonials-section .testimonial-swiper .test-circle {
         transform: translateX(-50%) translateY(20%);
     }
 }