.installment-def {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: auto;
    margin-top:96px;
    margin-bottom:96px;
    background: #F6F7F8;
    border-radius: 8px;
}
.installment-def__item {
    width:50%;
}
.installment-def__item-title {
    width: 70%;
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    font-feature-settings: 'liga' off;
    color: #333333;
}
.installment-def__item-text p {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    font-feature-settings: 'liga' off;
    color: #333333;
}
.installment-def__item-text p:last-child::after {
    content: "1";
    vertical-align: super;
    font-size: 0.6em;
    display: inline;
}
.installment-def__text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    margin-left: 32px;
    margin-top: 32px;
    margin-bottom: 32px;
}
.installment-def__img-container {
    width: 100%;
    height: 208px;
    overflow: hidden;
}
.installment-def__img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top -60px left 0px;
}
.installment-def__item-text-mobile {
    display: none;
}
@media only screen and (max-width: 768px) {
    .installment-def {
        margin-top: 64px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: #F6F7F8;
    }
    .installment-def__item {
        width: 100%;
    }
    .installment-def__text-container {
        margin:0;
        text-align: center;
    }
    .installment-def__img-container {
        width: 100%;
        height :212px;
        overflow: hidden;
        display: flex;
        align-items:center;
        justify-content: center;
    }
    .installment-def__img-container img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 375px;
        height: 100%;
        object-fit: cover;
        object-position: top 10px left 0px;
    }
    .installment-def__text-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        gap: 20px;
        width: 100%;
    }
    .installment-def__item-title {
        width: 100%;
        margin-top: 28px;
        text-align: center;
        height: 28px;
        font-family: 'Helvetica';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 28px;
        font-feature-settings: 'liga' off;
        color: #333333;
    }
    .installment-def__item-text {
        display:none;
    }
    .installment-def__item-text-mobile {
        word-wrap: break-word;
        display: block;
        max-width: 100%;
        padding: 0 30px;
    }
    .installment-def__item-text-mobile p {
        word-wrap: break-word;
        font-family: 'Helvetica';
        width: 100%;
        font-style: normal;
        font-weight: 400;
        font-size: 17px;
        line-height: 28px;
        text-align: center;
        font-feature-settings: 'liga' off;
        color: #333333;
    }
    .installment-def__item-text-mobile p:last-child::after {
        content: "1";
        vertical-align: super;
        font-size: 0.6em;
        display: inline;
    }
}
