#testimonials {
             background: rgba(30, 108, 217);
             min-height: auto;
            color: #fff;
            padding: 20px;
         }

         #testimonials .owl-carousel .owl-item {
             transition: all 0.3s ease-in-out
         }

         #testimonials .owl-carousel .owl-item .card {
             padding: 30px;
             position: relative
         }

         #testimonials .owl-carousel .owl-stage-outer {
             overflow-y: auto !important;
             padding-bottom: 40px
         }

         #testimonials .owl-carousel .owl-item img {
             height: 200px;
             object-fit: cover;
             border-radius: 6px
         }

         #testimonials .owl-carousel .owl-item .card .name {
             position: absolute;
             bottom: -20px;
             left: 33%;
             color: #fff;
             font-size: 1.1rem;
             font-weight: 600;
             background-color: #f5883c;
             padding: 0.3rem 0.4rem;
             border-radius: 5px;
             box-shadow: 2px 3px 15px #3c405a
         }

         #testimonials .owl-carousel .owl-item .card {
             opacity: 0.2;
             transform: scale3d(0.8, 0.8, 0.8);
             transition: all 0.3s ease-in-out
         }

         #testimonials .owl-carousel .owl-item.active.center .card {
             opacity: 1;
             transform: scale3d(1, 1, 1)
         }

         #testimonials .owl-carousel .owl-dots {
             display: inline-block;
             width: 100%;
             text-align: center
         }

         #testimonials .owl-theme .owl-dots .owl-dot span {
             height: 20px;
             background: #2a6ba3 !important;
             border-radius: 2px !important;
             opacity: 0.8
         }

         #testimonials .owl-theme .owl-dots .owl-dot.active span,
         #testimonials .owl-theme .owl-dots .owl-dot:hover span {
             height: 13px;
             width: 13px;
             opacity: 1;
             transform: translateY(2px);
             background: #83b8e7 !important
         }

         @media(min-width: 480.6px) and (max-width: 575.5px) {
             #testimonials .owl-carousel .owl-item .card .name {
                 left: 24%
             }
         }

         @media(max-width: 360px) {
             #testimonials .owl-carousel .owl-item .card .name {
                 left: 30%
             }
         }