.testimonials {
    position: relative;
    overflow: hidden;
    padding: 76px 20px 77px;
    background: #5798cf;
    font-family: "Poppins", Arial, sans-serif;
    }
    .testimonials__container {
    width: min(770px, 100%);
    margin: 0 auto;
    }
    .testimonials__header {
    text-align: center;
    color: #ffffff;
    }
    .testimonials__header h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    }
    .testimonials__line {
    display: block;
    width: 352px;
    max-width: 72%;
    height: 1px;
    margin: 17px auto 16px;
    background: #aaff25;
    }
    .testimonials__header p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    }
    .testimonials__header strong {
    font-weight: 700;
    }
    .testimonials__carousel {
    position: relative;
    margin-top: 57px;
    }
    .testimonials__viewport {
    width: 100%;
    overflow: hidden;
    }
    .testimonials__track {
    display: flex;
    gap: 26px;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    }
    .testimonial-card {
    flex: 0 0 calc((100% - 26px) / 2);
    display: flex;
    min-width: 0;
    min-height: 152px;
    box-sizing: border-box;
    padding: 26px 34px 24px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 3px;
    background: #ffffff;
    box-shadow: 0 7px 18px rgba(24, 68, 110, 0.08);
    text-align: center;
    }
    .testimonial-card p {
    margin: 0;
    color: #858585;
    font-size: 11px;
    line-height: 1.55;
    font-weight: 400;
    }
    .testimonial-card h3 {
    margin: 17px 0 0;
    color: #3f3f3f;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    }
    .testimonials__arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    width: 34px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity 180ms ease, transform 180ms ease;
    }
    .testimonials__arrow:hover {
    transform: translateY(-50%) scale(1.12);
    }
    .testimonials__arrow:focus-visible {
    outline: 2px solid #aaff25;
    outline-offset: 3px;
    }
    .testimonials__arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    }
    .testimonials__arrow--previous {
    left: -48px;
    }
    .testimonials__arrow--next {
    right: -48px;
    }
    .testimonials__arrow:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
    }
    @media (max-width: 880px) {
    .testimonials {
    padding-right: 58px;
    padding-left: 58px;
    }
    .testimonials__arrow--previous {
    left: -43px;
    }
    .testimonials__arrow--next {
    right: -43px;
    }
    }
    @media (max-width: 620px) {
    .testimonials {
    padding: 58px 48px 62px;
    }
    .testimonials__header h2 {
    font-size: 27px;
    }
    .testimonials__header p {
    font-size: 13px;
    }
    .testimonials__carousel {
    margin-top: 40px;
    }
    .testimonials__track {
    gap: 18px;
    }
    .testimonial-card {
    flex-basis: 100%;
    min-height: 180px;
    padding: 30px 26px 25px;
    }
    .testimonial-card p {
    font-size: 12px;
    }
    .testimonial-card h3 {
    font-size: 13px;
    }
    .testimonials__arrow--previous {
    left: -39px;
    }
    .testimonials__arrow--next {
    right: -39px;
    }
    }