.calculate-example {
    width: 100%;
}

.calculate-example__row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.calculate-example__col {
    display: flex;
    width: 50%;
}

.calculate-example__col:first-child {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.calculate-example__list {
    display: flex;
    width: 100%;
    gap: 5px;
    justify-content: flex-end;
}

.calculate-example__title {
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.calculate-example__subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.calculate-example__item {
    display: flex;
    align-items: center;
    padding: 3px 8px;
    background-color: #f8f8f8;
    border-radius: 5px;
    gap: 30px;
}

.calculate-example__item-title {
    text-transform: lowercase;
}

.calculate-example__item-value {
    color: #072e66;
    font-size: 21px;
    font-weight: 400;
}

@media (max-width: 1199px) {
    .calculate-example__row {
        flex-direction: column;
    }

    .calculate-example__col {
        width: 100%;
        align-items: center;
    }

    .calculate-example__list {
        padding-top: 8px;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .calculate-example__list {
        flex-direction: column;

    }
    .calculate-example__item {
        justify-content: space-between;
    }
}