.installment-plan {
    background-image: url(/img/blocks/installment-plan/bg1.svg);
    background-size: cover;
    background-position: center;
}

.installment-plan__wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.installment-plan__content {
    width: 65%;
}

.installment-plan__card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
    max-width: 35%;
}

@media (max-width: 768px) {
    .installment-plan {
        background-image: url(/img/blocks/installment-plan/bg1-mobile.svg);
    }

    .installment-plan__wrapper {
        flex-direction: column;
    }

    .installment-plan__content {
        width: 100%;
    }

    .installment-plan__card {
        right: unset;
        top: unset;
        max-width: inherit;
        position: relative;
        transform: unset;
    }

    .installment-plan .installment-plan__btn .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .installment-plan__card {
        right: -30px;
    }
}
