.reviews-slider {
    width: 100%;
    position: relative;
}

.splide__arrow,
.splide__pagination__page {
    background: #000;
    color: #fff;
}

.splide__pagination__page.is-active {
    background: #ffb730;
}

.reviews {
    list-style: none;
}

.reviews-slider {
    position: relative;
}

.review {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    height: 100%;
    padding: 1rem
}

@media screen and (max-width: 767px) {
    .review {
        justify-content: flex-start;
    }
}

.review__title,
.review__content,
.review__author,
.review__source {
    color: white;
}

.review h2.review__title {
    margin-top: 0;
}

.review__button {
    color: white;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--global-palette2);
    border-radius: 30px;
    box-sizing: border-box;
    column-gap: 10px;
    cursor: pointer;
    display: flex;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    height: 50px;
    justify-content: center;
    line-height: 32px;
    text-decoration: none;
    margin-top: 15px;
    padding: 4px 20px;
    transition: all 0.3s ease;
}

.review__button:hover,
.review__button:focus {
    color: var(--global-palette1);
    background-color: var(--global-palette2);
}

.review__button svg {
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: block;
    fill: none;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    height: 20px;
    letter-spacing: normal;
    line-height: 32px;
    overflow-clip-margin: content-box;
    overflow-x: hidden;
    overflow-y: hidden;
    stroke: rgb(255, 255, 255);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    text-align: center;
    text-size-adjust: 100%;
    text-transform: none;
    width: 20px;
    word-break: break-word;
}

.review__button:hover svg,
.review__button:focus svg {
    fill: var(--global-palette2);
    color: var(--global-palette2);

}

.review__author {
    display: inline-block;
    padding: 10px 0 4px 0;
    font-weight: 700;
}

.review__source {
    font-size: 12px;
}