.item__head > div > img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
}

.item__head > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.item__head > div h6 {
    margin: 0;
    font-weight: 700;
    color: #000;
    font-size: 16px;
    line-height: 1em;
}

.item__head > div span {
    font-size: 12px;
    line-height: 1em;
}

.item__head > div > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}

.item__head > svg {
    width: 48px;
    height: auto;
    color: #E5E5E5;
}

.swiper-slide.adt__item {
    display: flex;
    flex-direction: column;
    background: #fff !important;
    gap: 12px;
    padding: 25px;
    border-radius: 15px;
    transform: scale(0.9);
    transition: all 0.4s ease;
    min-width: 350px;
}

.adt__item.swiper-slide-active {
    transform: scale(1.1);
}

.item__content > div:first-child > p {
    margin: 0;
}

.item__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.item__content > div:nth-child(2) > svg {
    width: 18px;
    color: #004e92;
}

.item__content > div:nth-child(2) {
    display: flex;
}

.ad__testimonials > .swiper-pagination {
    bottom: -45px !important;
}

.ad__testimonials::before {
    content: "";
    position: absolute;
    width: 25%;
    left: 0;
    background: linear-gradient(to right, #E6EEF5 30%, transparent);
    height: 100%;
    top: 0;
    z-index: 5;
    transform: scale(1.5);
}

.ad__testimonials::after {
    content: "";
    position: absolute;
    width: 20%;
    right: 0;
    background: linear-gradient(to left, #E6EEF5 30%, transparent);
    height: 100%;
    top: 0;
    z-index: 5;
    transform: scale(1.5);
}
                                
.ad__testimonials > .swiper-pagination > .swiper-pagination-bullet {
    background: #004e92;
}
                                
.ad__testimonials {
    padding: 0px 20px;
}

.ad__testimonials .swiper-wrapper {
    align-items: center;
}
                                
/* Responsive Mobile */
@media (max-width: 768px) {
    .ad__testimonials::before {
        width: 10%;
        opacity: 0;
    }
    
    .ad__testimonials::after {
        width: 10%;
        opacity: 0;
    }
    
    .api-cover > img {
        border-radius: 15px;
    }
}

/* Responsive Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
}

/* Responsive Mobile & Tablet */
@media (max-width: 1024px) {
    .adt__item.swiper-slide-active {
        transform: scale(1);
    }
    
    .ad__testimonials::before {
        transform: scale(1.2) !important;
    }
    
    .ad__testimonials::after {
        transform: scale(1.2) !important;
    }
}