.split-background-container {
    display: flex;
    width: 100%;
    height: 110vh;
    position: relative;
    overflow: hidden;
}

    .split-background-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 150%;
        height: 50%;
        background: #C3D0EE;
        border-radius: 100%;
        transform: translate(-17%,-80%);
        z-index: 1;
    }

    .split-background-container::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150%;
        height: 70%;
        background-color: white;
        border-radius: 100%;
        transform: translate(-17%,85%);
        z-index: 1;
    }

.split-background-left {
    background: #FEE0A6;
    flex: 1;
    height: 100%;
    position: relative;
    padding: 5vw 0 5vw;
    display: flex;
    flex-direction: column;
}

.split-background-right {
    flex: 1;
    height: 100%;
    position: relative;
}

.review-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: none;
}

.review-image.active {
    display: block; 
}

.review-text-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 70vh;
    overflow: hidden;
}

.review-text {
    width: 53%;
    height: auto;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    line-height: 1.6vw;
    text-align: left;
    display: none;
}

.review-text.active {
    display: block; 
}

.testimony-author {
    color: #1648B3;
}

.dots-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2vw;
    padding: 2vw 0;
    margin-top: auto;
    bottom: 15vw;
}

.dot {
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
    background: #B59C6C;
    cursor: pointer;
}

.dot.active {
    background: #FF642C;
}

.review-decoration-image {
    margin-right: auto;
    padding-left: 7.5vw;
    width: 7%;
}

@media (max-width: 1024px) {
    .split-background-left {
        padding: 15vw 0 5vw;
    }

    .review-text {
        width: 90%;
        font-size: 1.5vw;
        line-height: 2vw;
    }

    .dots-container {
        bottom: 30vw;
    }
}

@media (max-width: 770px) {
    .split-background-container {
        flex-direction: column;
        height: auto;
        overflow-x: hidden;
    }

    .split-background-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 150%;
        height: 10%;
        background: #C3D0EE;
        border-radius: 100%;
        z-index: 1;
    }

    .split-background-container::after {
        display: none;
    }

    .split-background-left {
        padding: 5vw 0 5vw;
    }

    .split-background-right {
        order: -1;
        min-height:145vw;
    }
        .split-background-right::after {
            content: "";
            position: absolute;
            bottom: -10%;
            left: -25%;
            width: 150%;
            height: 15%;
            background-color: #FEE0A6;
            border-radius: 100%;
            z-index: 1;
        }

    .review-text {
        width: 75%;
        font-size: 3.5vw;
        line-height: 5vw;
        z-index: 2;
    }

    .dots-container {
        display: flex;
        justify-content: center;
        margin-top: auto;
        bottom: -5vw;
    }

    .dot {
        height: 9px;
        width: 9px;
    }

    .review-decoration-image {
        display: none;
    }
}

@media screen and (max-width: 430px) {
    .review-text {
        width: 75%;
        font-size: 14px;
    }

    .review-text-container {
        position: relative;
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-height: 100vh;
        overflow: hidden;
    }

    .testimony-author {
        font-size: 18px;
    }
}