.price{
    display: flex;
}

.price__numbers{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 50%;
    max-width: 50%;
}

.price__numbers-block{
    display: flex;
    align-items: flex-end;
}

.price__numbers-title{
    font-size: 64px;
    line-height: 64px;
    font-weight: 800;
    color: var(--grey-2);
    margin: 120px 0 70px 0;
}

.price__numbers-title-cash{
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
    color: var(--green);
    margin: 0 0 0 0;
}

.price__numbers-title-cash_h-fs{
	height: 59px;
	font-size: 61px;
}

.price__numbers-cash{
    font-size: 24px;
    line-height: 31.2px;
    font-weight: 900;
    color: var(--green);
    margin: 0;
}

.price__numbers-cash_mb-60{
    margin-bottom: 60px;
}

.price__numbers-category{
    display: flex;
    width: 50%;
    justify-content: space-between;
}

.price__sla{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 50%;
    max-width: 50%;
    background: var(--blue-4);
}

.price__sla-title{
    font-size: 64px;
    line-height: 64px;
    font-weight: 800;
    color: var(--blue-3);
    margin: 0;
}

.price__sla-title_mt-90{
    margin-top: 90px;
}

.price__sla-title_mb-60{
    margin-bottom: 60px;
}

.price__sla-check{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    margin-bottom: 20px;
}

.price__sla-text{
    display: flex;
    font-size: 18px;
    line-height: 23.4px;
    margin: 0;
}

.price__sla-check_mb-140{
    margin-bottom: 140px;
}

.price__sla-text-img{
    height: 18px;
	margin-right: 16px;
}

.price__sla-text_blue{
    font-weight: 700;
    color: var(--blue-2);
    margin-left: 40px;
}

@media screen and (max-width: 1199px) {

    .price{
        flex-wrap: wrap;
    }

    .price__numbers, .price__sla {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

@media screen and (max-width: 575px) {

	.price__numbers-block{
        align-items: center;
        flex-direction: column;
        gap: 0px;
    }

    .price__sla-title, .price__numbers-title {
        font-size: 32px;
        line-height: 32px;
    }

    .price__sla-text{
        font-size: 16px;
    }

    .price__numbers-category{
        width: 75%;
    }
}


